/* ===== Reset & Variables ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --gold: #c9a84c;
  --gold-light: #e0c97f;
  --gold-dark: #a8872e;
  --gold-subtle: #f9f3e3;
  --charcoal: #1a1a1a;
  --dark: #2c2c2c;
  --gray: #6b6b6b;
  --gray-light: #a0a0a0;
  --gray-border: #e5e5e5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --nav-height: 80px;
  --container-width: 1140px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  z-index: 1000;
  overflow: visible;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

/* Fallback text logo when image doesn't load */
.logo-img[alt]::after {
  content: attr(alt);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* ===== Dropdown ===== */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

/* ===== Specs Page ===== */
.studio-description {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 16px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.spec-card {
  background: var(--off-white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.spec-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.spec-icon svg {
  width: 100%;
  height: 100%;
}

.spec-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.spec-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 2px 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.6)), url('hero-bg.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 clamp(48px, 8vw, 120px);
  gap: 60px;
}

.hero-content {
  position: relative;
  text-align: left;
  max-width: 720px;
}

.hero-player {
  position: relative;
  flex-shrink: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 28px;
  border-radius: 2px;
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ===== Section Shared Styles ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title.center {
  text-align: center;
}

/* ===== About Section ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-page {
  padding-top: calc(var(--nav-height) + 80px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
}

.about-image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--gold-subtle), #f0e8d0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-border);
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--gold);
  opacity: 0.5;
}

.about-text p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ===== Voice History Table ===== */
.table-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.table-search {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}

.table-search:focus {
  outline: none;
  border-color: var(--gold);
}

.table-filters {
  display: flex;
  gap: 12px;
}

.table-filter {
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
}

.table-filter:focus {
  outline: none;
  border-color: var(--gold);
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
}

.voice-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.voice-table thead {
  background: var(--charcoal);
  color: var(--white);
}

.voice-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.voice-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray);
}

.voice-table tbody tr:hover {
  background: var(--gold-subtle);
}

.voice-table tbody tr:last-child td {
  border-bottom: none;
}

.voice-table td:first-child {
  color: var(--charcoal);
  font-weight: 500;
}

.table-count {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

/* ===== Previous Work Section ===== */
/* ===== Voice Specialties Section ===== */
.specialties {
  padding: 100px 0;
  background: var(--white);
}

.specialties-content {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}

.specialties-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.specialties-content p:last-child {
  margin-bottom: 0;
}

/* ===== Previous Work Section ===== */
.previous-work {
  padding: 100px 0;
  background: var(--off-white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 120px 0;
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.reviews-scroll-wrapper {
  overflow: hidden;
  margin-top: 56px;
}

.reviews-scroll-track {
  display: flex;
  gap: 32px;
  animation: scrollReviews 30s linear infinite;
  width: max-content;
}

.reviews-scroll-track:hover {
  animation-play-state: paused;
}

.reviews-scroll-track .review-card {
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 16px));
  }
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.review-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.review-role {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 2px;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: var(--gray-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--gray-light);
  transition: color var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.social-link:hover svg {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 56px;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .logo-img {
    height: 38px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    transition: transform var(--transition);
  }

  .nav-links.active {
    transform: translateY(var(--nav-height));
  }

  .nav-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 16px;
    min-width: auto;
  }

  .dropdown-menu a {
    padding: 6px 0;
  }

  .dropdown-menu a:hover {
    background: transparent;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 40px) 0 60px;
  }

  .hero-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }

  .hero-player {
    align-self: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .about,
  .reviews {
    padding: 80px 0;
  }

  .about-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .rate-tables-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer {
    padding: 60px 0 0;
  }
}

/* ===== Contact Page ===== */
.contact-page {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 40px 32px;
  height: fit-content;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-list a,
.contact-info-list p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-list a:hover {
  color: var(--gold-dark);
}

/* ===== Rate Sheet Page ===== */
.rates-page {
  padding-bottom: 80px;
}

.rate-category {
  margin-top: 48px;
}

.rate-category-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.rate-category-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  margin-top: 20px;
}

.rate-tables-row .rate-category-subtitle {
  padding-left: 16px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.rate-table thead {
  background: var(--charcoal);
  color: var(--white);
}

.rate-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-table td {
  padding: 12px 16px;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-border);
}

.rate-table tbody tr:hover {
  background: var(--gold-subtle);
}

.rate-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 8px;
  font-style: italic;
}

.rate-tables-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 480px) {
  .table-controls {
    flex-direction: column;
  }

  .table-filters {
    width: 100%;
  }

  .table-filter {
    flex: 1;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}
