/* =============================================
   Midwest Sales Partners - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy: #1a2a4a;
  --navy-deep: #111e36;
  --navy-mid: #243557;
  --blue-mid: #2f5496;
  --blue-light: #4a6fa5;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-400: #9aa4b8;
  --gray-600: #5a6478;
  --gray-800: #2e3547;
  --text: #1e2a3a;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
  --transition: .22s ease;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-light);
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: var(--gray-200);
}

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

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: .02em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #b8942f;
  color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(201, 168, 76, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Divider ── */
.divider {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   NAVIGATION
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
}

.nav-brand-sub {
  font-size: .68rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  padding: .45rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--gray-100);
  color: var(--navy);
}

.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white);
  margin-left: .5rem;
}

.nav-links .nav-cta:hover {
  background: var(--navy-mid);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: .6rem 1rem;
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-left: 0;
    margin-top: .5rem;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(47, 84, 150, .35) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-label {
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .78);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-badge {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  flex-shrink: 0;
}

.hero-badge img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 640px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }
}

/* ===========================
   INTERACTIVE TILEMAP
   =========================== */
.interactive-map-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.midwest-vector-map {
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

.map-state {
  stroke: var(--white);
  stroke-width: 1.5;
  transition: all var(--transition);
}

.map-state.bg {
  fill: var(--gray-200);
}

.map-state.active-tile {
  fill: var(--blue-mid);
  cursor: pointer;
  outline: none;
}

.map-state.active-tile:hover,
.map-state.active-tile:focus {
  fill: var(--navy);
  stroke-width: 2.5;
  filter: brightness(1.1);
}

.map-state.active-tile.active {
  fill: var(--gold);
  stroke-width: 2.5;
}

/* ===========================
   STATE MODAL
   =========================== */
.state-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.state-modal.open {
  visibility: visible;
  opacity: 1;
}

.state-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 30, 54, .6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.state-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1001;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95);
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

.state-modal.open .state-modal-content {
  transform: translateY(0) scale(1);
}

.state-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.state-modal-close:hover {
  color: var(--navy);
}

.state-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.state-modal-abbr {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.state-modal-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.state-modal-content p {
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.state-modal-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-stat {
  background: var(--off-white);
  padding: .5rem .85rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ===========================
   CATEGORIES GRID
   =========================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 1.5rem;
  width: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.category-text h3 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

/* ===========================
   CTA STRIP
   =========================== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   APPROACH / FEATURE LIST
   =========================== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.approach-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.approach-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.approach-card p {
  font-size: .9rem;
  margin: 0;
  color: var(--gray-600);
}

/* ===========================
   BENEFIT LIST (Manufacturers)
   =========================== */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.benefit-item p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray-800);
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: .5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .75rem;
  letter-spacing: .05em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  margin: 0 .5rem;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form {}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(47, 84, 150, .12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}

.form-message {
  font-size: .88rem;
  color: var(--gray-600);
  display: none;
}

.form-message.success {
  color: #2e7d52;
  display: block;
}

.form-message.error {
  color: #c0392b;
  display: block;
}

/* Contact sidebar */
.contact-sidebar {}

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-200);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: .88rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.contact-detail-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .1rem;
}

.contact-detail-text a {
  color: var(--blue-mid);
}

.contact-detail-text a:hover {
  color: var(--blue-light);
}

.territory-quick {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.territory-quick h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.territory-quick-states {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.territory-quick-states span {
  font-size: .78rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: .2rem .55rem;
}

/* ===========================
   ABOUT - LEAD SECTION
   =========================== */
.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-800);
  max-width: 720px;
  margin-bottom: 0;
}

/* Stat row */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}

/* Intro two-col */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 700px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   VALUE PROP (Manufacturers)
   =========================== */
.value-prop {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 700px) {
  .value-prop {
    grid-template-columns: 1fr;
  }
}

.value-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  gap: 1rem;
}

.value-visual img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  opacity: .9;
}

.value-visual h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
}

.value-visual p {
  color: rgba(255, 255, 255, .68);
  font-size: .88rem;
  margin: 0;
}

/* ===========================
   CATEGORIES PAGE FULL GRID
   =========================== */
.full-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.full-category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.full-category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.full-category-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .6rem;
}

.full-category-header .cat-icon {
  font-size: 1.6rem;
}

.full-category-header h3 {
  font-size: .95rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.full-category-card p {
  font-size: .85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ===========================
   NOTICE / INFO BOX
   =========================== */
.info-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
}

.info-box p {
  margin: 0;
  font-size: .93rem;
  color: var(--gray-800);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3rem 0 1.75rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-sub {
  font-size: .72rem;
  color: var(--gray-400);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: .85rem;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 320px;
  margin: 0;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
  font-size: .8rem;
  color: var(--gray-400);
}

.footer-tagline {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
  text-align: right;
  line-height: 1.5;
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn-group {
    flex-direction: column;
    gap: .75rem;
  }

  .btn-group .btn {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline {
    text-align: center;
  }
}

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  z-index: 999;
  transform: translateY(calc(100% + 2rem));
  transition: transform .35s cubic-bezier(.175, .885, .32, 1.275);
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
}

.toast-icon {
  margin-right: .5rem;
}