/* ==============================
   MIKAEL HAMRIN — Personal Brand
   Clean, warm, adventurous
   ============================== */

:root {
  --brand: #E8631A;        /* warm orange — energy, freedom */
  --brand-dark: #C4521A;
  --brand-light: #FFF3EC;
  --accent: #2C3E50;       /* deep navy — grounded, professional */
  --accent-light: #34495E;
  --gold: #F5A623;
  --bg: #FAFAF8;            /* warm off-white */
  --bg-dark: #F0EDE8;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* SECTION */
.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title-light { color: var(--white); }

.section-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,99,26,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}
.btn-ghost:hover {
  background: var(--bg-dark);
  transform: translateY(-2px);
}

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

.btn-full { width: 100%; }


/* ==============================
   NAVIGATION
   ============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 12px 0;
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--brand-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}


/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-dark);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 48% 52% 40% 60% / 40% 45% 55% 60%;
  border: 3px solid rgba(232,99,26,0.3);
  box-shadow: 0 20px 60px rgba(232,99,26,0.15);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 48% 52% 40% 60% / 40% 45% 55% 60%;
}

.hero-photo-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}


/* ==============================
   ABOUT
   ============================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-text strong { color: var(--text); }
.about-text em { color: var(--brand); font-style: italic; }

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--bg-dark);
}

.fact {
  text-align: center;
}

.fact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}

.fact span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-quote {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 32px;
  margin-bottom: 32px;
}

.about-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

.about-quote blockquote span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hi-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ==============================
   BUSINESSES
   ============================== */
.businesses {
  background: var(--bg);
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.biz-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.biz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transition: var(--transition);
}

.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.biz-card:hover::before { transform: scaleX(1); }

.biz-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.biz-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.biz-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.biz-features {
  list-style: none;
  margin-bottom: 32px;
}

.biz-features li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--bg-dark);
}

.biz-features li:last-child { border-bottom: none; }


/* ==============================
   COURSE TEASER
   ============================== */
.course {
  background: linear-gradient(135deg, var(--accent) 0%, #1a252f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.course::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,99,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.course-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.course-sub {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.course-usps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.usp {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.usp-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.usp strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.usp p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
}

.course-note {
  font-size: 0.875rem;
  opacity: 0.6;
  font-style: italic;
}

.course-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.course-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.course-form-card > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.email-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--bg-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.email-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  background: var(--white);
}

.contact-form textarea { resize: vertical; line-height: 1.6; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

.form-success, .contact-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success span, .contact-success span { font-size: 3rem; display: block; margin-bottom: 12px; }
.form-success strong, .contact-success strong { font-size: 1.25rem; display: block; margin-bottom: 8px; }
.form-success p, .contact-success p { color: var(--text-muted); }


/* ==============================
   THE INTERVIEW
   ============================== */
.interview {
  background: var(--white);
}

.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.interview-art {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-icon {
  font-size: 5rem;
  z-index: 2;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.interview-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.15;
  animation: ripple 3s ease-in-out infinite;
}

.c1 { width: 140px; height: 140px; border-color: var(--brand); animation-delay: 0s; }
.c2 { width: 220px; height: 220px; border-color: var(--gold); animation-delay: 0.5s; }
.c3 { width: 300px; height: 300px; border-color: var(--accent); animation-delay: 1s; }

@keyframes ripple {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.03); }
}

.interview-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.interview-text strong { color: var(--text); }

.interview-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.interview-goal {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ==============================
   SPEAKING / MEDIA
   ============================== */
.speaking {
  background: var(--bg);
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.speaking-topic {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.speaking-topic:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.speaking-topic span {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.speaking-topic strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.speaking-topic p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.speaking-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.placeholder-pod {
  background: var(--white);
  border: 2px dashed var(--bg-dark);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
}

.placeholder-pod span { font-size: 2rem; display: block; margin-bottom: 8px; }
.placeholder-pod p { font-size: 0.875rem; }

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

.speaking-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}


/* ==============================
   CONTACT
   ============================== */
.contact {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-dark);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand);
}

.social-link svg { width: 20px; height: 20px; }

.calendly-wrap { margin-top: 8px; }

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}


/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 24px;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.footer-social a:hover { background: var(--brand); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.footer-col strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-tagline { font-style: italic; }


/* ==============================
   RESPONSIVE — MOBILE FIRST
   ============================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-photo-wrap { width: 280px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .biz-grid { grid-template-columns: 1fr; }
  .course-inner { grid-template-columns: 1fr; gap: 48px; }
  .interview-grid { grid-template-columns: 1fr; }
  .interview-art { margin-bottom: 32px; }
  .speaking-grid { grid-template-columns: 1fr; }
  .speaking-placeholder { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--bg-dark);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(250,250,248,0.95); backdrop-filter: blur(12px); }

  .biz-card { padding: 32px 24px; }
  .course-form-card { padding: 32px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .footer-links { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
  .interview-actions { flex-direction: column; align-items: flex-start; }
}


/* ==============================
   ANIMATIONS
   ============================== */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* Media Grid - Podcasts & Press */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.media-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.media-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}
.media-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
a.media-card {
  text-decoration: none;
  color: inherit;
}
.media-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.media-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Biz card internal links */
.biz-card a:not(.btn) {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.biz-card a:not(.btn):hover {
  border-bottom-color: var(--brand);
}
.biz-card h3 a {
  color: var(--text) !important;
  border-bottom: none !important;
}
.biz-card h3 a:hover {
  color: var(--brand) !important;
}

/* Footer links SEO */
.footer-col a {
  font-size: 0.85rem;
}
