/* ============================================
   Thrivepoint, PLLC — Main Stylesheet
   Zero-framework custom CSS
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Refreshed palette: warmer navy, richer gold, softer neutrals */
  --navy: #1b2d45;
  --navy-light: #274060;
  --navy-dark: #111d30;
  --gold: #ff6600;
  --gold-light: #ff7b24;
  --gold-dark: #e55b00;
  --gold-muted: rgba(255,102,0,0.12);
  --quote-bg: #304771;
  --sage: #6b8f71;
  --sage-light: #e8f0e9;
  --white: #ffffff;
  --cream: #f2f2f2;
  --stone: #ebebeb;
  --border: #ddd;
  --text: #2d2d2d;
  --text-secondary: #5a5a5a;
  --text-muted: #888;
  --footer-bg: #141e30;
  --contact-bg: #1b2d45;

  /* Typography — DM Serif Display + DM Sans + Roboto Slab (for headings matching original) */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mobirise: 'Roboto Slab', Georgia, serif;

  /* Layout */
  --max-w: 1120px;
  --max-w-narrow: 740px;
  --section-py: 5.5rem;
  --gap: 2rem;
  --radius: 8px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 0.18s;
  --t-med: 0.3s;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  /* Navbar height for offset */
  --nav-h: 70px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--gold); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.25; color: var(--navy-dark); }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--max-w-narrow); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.8rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

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

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

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav__logo { height: 2.8rem; width: auto; }
.nav__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-dark);
}
.nav__name small { font-size: 0.45em; vertical-align: super; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  padding: 0.45rem 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all var(--t-fast);
}
.nav__link:hover { color: var(--navy); background: var(--stone); }
.nav__cta { margin-left: 0.75rem; }

/* Hamburger */
.nav__toggle { display: none; background: none; border: none; padding: 0.5rem; }
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.nav__hamburger span { display: block; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: all var(--t-fast); transform-origin: center; }
.nav__toggle[aria-expanded="true"] .nav__hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
  padding: 4rem 0 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
}
.hero__title {
  font-family: var(--font-mobirise);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  color: #232d3b;
  margin-bottom: 1rem;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 100%;
}
.hero__subtitle {
  font-family: var(--font-mobirise);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #3b3b3b;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  background: rgba(255,255,255,0.15);
}
.hero__scroll:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.3);
}
.hero__scroll svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-py) 0; }
.section--cream { background: var(--cream); }
.section--stone { background: var(--stone); }
.section--white { background: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}
.section__subtitle {
  max-width: 580px;
  margin: 0.75rem auto 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   SPECIALTIES CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.card__body { padding: 1.75rem 1.5rem; }
.card__title {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}
.card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.card__text a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.card__text a:hover { color: var(--gold-light); }

/* ============================================
   LOGO BAR (Featured In)
   ============================================ */
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.logo-bar__item {
  height: 55px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all var(--t-med) var(--ease);
}
.logo-bar__item:hover {
  opacity: 0.4;
  filter: grayscale(100%);
}
.logo-bar a { display: inline-block; line-height: 0; }

/* ============================================
   DIVIDER QUOTE
   ============================================ */
.divider-quote {
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  background: var(--quote-bg);
}
.divider-quote::before,
.divider-quote::after {
  content: '';
  display: block;
  width: 80%;
  max-width: 700px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  margin: 0 auto;
}
.divider-quote::before { margin-bottom: 2.5rem; }
.divider-quote::after { margin-top: 2.5rem; }
.divider-quote__text {
  font-family: var(--font-mobirise);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 300;
}

/* ============================================
   FEATURES ROW (Location, Telehealth, Saturday)
   ============================================ */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: background var(--t-fast);
}
.feature:hover {
  background: var(--cream);
}
.feature__icon {
  width: auto;
  height: auto;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg {
  width: 64px;
  height: 64px;
  stroke: #49a4d4;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature__title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.feature__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.feature__text small {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82em;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.cta-banner__eyebrow {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 0.1rem;
}
.cta-banner__title {
  font-size: 2.6rem;
}

/* ============================================
   BIO / ABOUT SECTION
   ============================================ */
.bio {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.bio__img-wrap {
  position: relative;
}
.bio__img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.bio__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

/* ============================================
   AWARDS SLIDER
   ============================================ */
.awards-slider {
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
}
.awards-slider__track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.awards-slider__item {
  flex: 0 0 auto;
  text-align: center;
}
.awards-slider__item img {
  width: 180px;
  height: auto;
  margin: 0 auto;
}
.awards-slider__item .year {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: all var(--t-fast);
  z-index: 5;
}
.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.slider-btn--prev { left: 0; }
.slider-btn--next { right: 0; }

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial {
  flex: 0 0 100%;
  padding: 1rem 3rem;
  text-align: center;
}
.testimonial__quote {
  position: relative;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.85;
}
.testimonial__quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 32px;
  margin: 0 auto 1.25rem;
  background: var(--gold-muted);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32'%3E%3Cpath d='M0 32V18.4C0 6.1 7.2.5 17.2 0l1.3 4.5C11 6.2 8.2 10.7 8 16h9v16H0zm22.5 0V18.4c0-12.3 7.2-17.9 17.2-18.4L41 4.5C33.5 6.2 30.7 10.7 30.5 16h9v16h-17z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32'%3E%3Cpath d='M0 32V18.4C0 6.1 7.2.5 17.2 0l1.3 4.5C11 6.2 8.2 10.7 8 16h9v16H0zm22.5 0V18.4c0-12.3 7.2-17.9 17.2-18.4L41 4.5C33.5 6.2 30.7 10.7 30.5 16h9v16h-17z'/%3E%3C/svg%3E") no-repeat center;
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  transition: all var(--t-fast);
}
.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  transition: all var(--t-fast);
  z-index: 5;
}
.testimonials__nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.testimonials__nav--prev { left: 0; }
.testimonials__nav--next { right: 0; }

/* ============================================
   CONTACT BAR
   ============================================ */
.contact-bar {
  background: var(--contact-bg);
  padding: 4rem 0;
}
.contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-bar__label {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-bar__item {
  text-align: center;
}
.contact-bar__item p,
.contact-bar__item address {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}
.contact-bar__item a { color: rgba(255,255,255,0.88); }
.contact-bar__item a:hover { color: var(--gold-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  padding: 4rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__brand small { font-size: 0.4em; vertical-align: super; }
.footer__logo { opacity: 0.85; }
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 260px;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__links li { margin-bottom: 0.35rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__trademark {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  text-align: center;
}
.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-med) var(--ease);
  z-index: 900;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ============================================
   PAGE-LEVEL HELPERS
   ============================================ */
.page-header {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-header--navy {
  background: #304771;
  border-bottom: none;
}
.page-header--navy .page-header__title {
  color: #fff;
  font-family: var(--font-mobirise);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}
.page-header--navy .page-header__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.page-header--navy .page-header__subtitle a,
.page-header--navy .page-header__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-header--navy .page-header__note {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-header__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.page-header__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Prose content (legal pages, blog, etc) */
.prose { max-width: var(--max-w-narrow); margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.85; }
.prose ul, .prose ol { margin: 0 0 1rem 1.25rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.35rem; color: var(--text-secondary); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-light); }

/* Directions layout */
.directions-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.direction-block {
  margin-bottom: 0;
}
.direction-block__title {
  font-family: var(--font-mobirise);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.direction-block p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-secondary);
}
.direction-phone {
  text-align: center;
  margin-top: 2.5rem;
}
.direction-phone p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.directions-map {
  margin-top: 1rem;
}

/* Media/Press links list */
.media-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.media-links a {
  display: block;
  width: 100%;
  max-width: 500px;
  text-align: center;
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast), background var(--t-fast);
}
.media-links a:first-child {
  border-top: 1px solid var(--border);
}
.media-links a:hover {
  color: var(--gold);
  background: rgba(255,102,0,0.04);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .bio { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio__img-wrap { max-width: 420px; margin: 0 auto; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; --nav-h: 62px; }

  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--t-med) var(--ease);
    z-index: 999;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stone);
    border-radius: 0;
    font-size: 0.95rem;
  }
  .nav__cta {
    margin: 1rem 0 0;
    width: 100%;
    text-align: center;
  }
  .nav__cta .btn { width: 100%; justify-content: center; }

  .card-grid { grid-template-columns: 1fr; }
  .directions-cols { grid-template-columns: 1fr; gap: 2rem; }
  .features-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-bar__grid { grid-template-columns: repeat(3, 1fr); text-align: center; gap: 1rem; }
  .contact-bar__label { font-size: 0.85rem; }
  .contact-bar__item p, .contact-bar__item address { font-size: 0.78rem; }
  .contact-bar { padding: 2.5rem 0; }
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 1.5rem;
  }
  .footer__grid > .footer__col:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__tagline { margin: 0 auto; }
  .footer__heading { font-size: 0.85rem; }
  .footer__links a { font-size: 0.8rem; }
  .footer__links li { margin-bottom: 0.2rem; }

  .cta-banner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }

  .hero { min-height: 65vh; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__scroll { display: none; }

  .testimonial { padding: 1rem 0.5rem; }
  .testimonials__nav { display: none; }

  .awards-slider { padding: 0 2.5rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .logo-bar__item { height: 38px; }
  .logo-bar { gap: 1.25rem 2rem; }
}
