/* ==========================================================================
   Key West Concierge Orthopedics — site.css
   Font: Montserrat 400/700 loaded via Google Fonts in seo_head()
   Colors: navy #15295b | orange #DD6420 | light-bg #F9F8F8
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset / Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

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

a { color: #15295b; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .75em;
  color: #15295b;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1.25em; }

ul, ol { margin: 0 0 1.25em; padding-left: 1.5em; }
li { margin-bottom: .4em; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 15px 40px;
  transition: background .2s, color .2s;
  line-height: 1.2;
}

.btn--primary {
  background: #15295b;
  color: #fff;
}

.btn--primary:hover {
  background: rgba(21, 41, 92, 0.79);
  color: #fff;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: #15295b;
  border: 2px solid #15295b;
}

.btn--outline:hover {
  background: #15295b;
  color: #fff;
  text-decoration: none;
}

.btn--white {
  background: #fff;
  color: #15295b;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.85);
  color: #15295b;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Site Header
   -------------------------------------------------------------------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  box-shadow: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: .6rem 1.25rem;
  gap: 1rem;
}

.site-logo { display: block; flex-shrink: 0; }
.site-logo img { height: 100px; width: auto; }

/* Nav */

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  display: block;
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #15295b;
  text-decoration: none;
  border-radius: 4px;
  transition: color .15s, background .15s;
}

.site-nav a:hover {
  color: #DD6420;
  text-decoration: none;
}


/* Hamburger toggle (mobile) */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #15295b;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.breadcrumbs {
  background: #F9F8F8;
  border-bottom: 1px solid #e8e8e8;
  padding: .5rem 0;
  font-size: .8rem;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: 1180px;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
}

.breadcrumbs li {
  margin: 0;
  display: flex;
  align-items: center;
  color: #666;
}

.breadcrumbs li + li::before {
  content: '›';
  margin-right: .25rem;
  color: #aaa;
}

.breadcrumbs a { color: #15295b; }
.breadcrumbs a:hover { color: #DD6420; }
.breadcrumbs [aria-current="page"] { color: #555; font-weight: 700; }

/* --------------------------------------------------------------------------
   Hero Sections
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.43);
}

.hero__overlay--dark {
  background: rgba(1, 22, 39, 0.64);
}

.hero__overlay--white70 {
  background: rgba(255, 255, 255, 0.70);
}

.hero__overlay--white79 {
  background: rgba(255, 255, 255, 0.79);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 140px 1.5rem 3rem;
  margin: 0 auto;
}

.hero__eyebrow {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero__tagline {
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.hero__intro {
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

/* All hero titles are navy — overlays are white so dark text is always readable */
.hero__title               { color: #15295b; }
.hero--home .hero__eyebrow { color: #15295b; }
.hero--home .hero__intro   { color: #333; }

/* Home hero inner: wider max-width, generous padding matching live site */
.hero__inner--home {
  max-width: 950px;
  padding-top: 120px;
  padding-bottom: 55px;
}

/* Large h1 title in home hero (55px matches live site BB heading) */
.hero__title--home {
  font-size: 3.4375rem; /* 55px */
  margin-bottom: .25rem;
}

/* Conditions line sits tight below the big h1 */
.hero__conditions {
  font-size: 1.4375rem; /* 23px — matches live site */
  color: #15295b;
  font-weight: 700;
  text-align: center;
  margin: -.5rem 0 2.5rem;
  padding: 0;
  line-height: 1.4;
}

.hero--home     { min-height: 0; background-attachment: fixed; }
.hero--services { background-attachment: fixed; }
.hero--news     { background-attachment: fixed; }
.hero--contact  { background-attachment: fixed; }

/* Hero background images are set as inline styles on each .hero element in the page files. */

/* --------------------------------------------------------------------------
   Home: Intro section (white bg, centered, below hero)
   -------------------------------------------------------------------------- */

.home-intro {
  background: #fff;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

.home-intro__inner {
  max-width: 900px;
  margin: 0 auto;
}

.home-intro__tagline {
  font-size: 1.875rem;
  color: #15295b;
  margin-bottom: 1.25rem;
}

.home-intro p { color: #333; margin-bottom: 1.25em; }
.home-intro a:not(.btn) { color: #15295b; }
.home-intro .btn { margin-top: .5rem; }

/* --------------------------------------------------------------------------
   Page Sections
   -------------------------------------------------------------------------- */

.page-section { padding: 4rem 0; }
.page-section--light { background: #F9F8F8; }
.page-section--author-header { background: #15295b; color: #fff; padding: 140px 0 3rem; }
.page-section--archive-header { background: #15295b; color: #fff; padding: 140px 0 3rem; }

.page-section--author-header h1,
.page-section--author-header p,
.page-section--archive-header h1,
.page-section--archive-header p { color: #fff; }

.page-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-section__inner--bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.page-section__inner--prose {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.8;
}


.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   Home: Services Banner
   -------------------------------------------------------------------------- */

.services-banner {
  position: relative;
  background-image: url('/assets/img/Dr_Jason_Pirozzolo_Concierge_Orthopedics_Office.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 3.5rem 0;
}

.services-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 22, 39, 0.70);
}

.services-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.services-banner__title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
  text-align: center;
}

.services-banner__title a { color: #fff; }
.services-banner__title a:hover { color: #DD6420; text-decoration: none; }

.services-banner__list {
  list-style: disc;
  margin: 0 auto;
  padding: 0 0 0 1.5em;
  max-width: 620px;
}

.services-banner__list li {
  margin-bottom: .55em;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.services-banner__list a {
  color: #fff;
  text-decoration: none;
  transition: color .15s;
}

.services-banner__list a:hover { color: #DD6420; text-decoration: none; }

/* --------------------------------------------------------------------------
   Home: Service Cards
   -------------------------------------------------------------------------- */

.service-cards { background: #fff; padding: 4rem 0; }

.service-cards__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}

.service-card:hover { box-shadow: 0 4px 18px rgba(0, 0, 0, .12); }

.service-card__img-link { display: block; overflow: hidden; }
.service-card__img-link img { width: 100%; height: 220px; object-fit: cover; transition: transform .3s; }
.service-card:hover .service-card__img-link img { transform: scale(1.04); }

.service-card__body {
  padding: .75rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body p {
  font-size: .95rem;
  color: #555;
  margin: 0;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #15295b;
  margin: 0 0 .5rem;
  text-align: left;
}

.service-card__title a { color: #15295b; }
.service-card__title a:hover { color: #DD6420; text-decoration: none; }

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */

.cta-band {
  background: #15295b;
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band--light {
  background: #F9F8F8;
  padding: 2rem 0 2.5rem;
}

.cta-band__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.cta-band__heading {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-band--light .cta-band__heading {
  color: #15295b;
}

/* --------------------------------------------------------------------------
   Services List
   -------------------------------------------------------------------------- */

.service-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

/* Services page: all items have image-left (no alternating) */
.service-list--no-alternate .service-item { direction: ltr; }
.service-list--no-alternate .service-item > * { direction: ltr; }

.service-item__img { border-radius: 8px; overflow: hidden; }
.service-item__img img { width: 100%; height: auto; display: block; }

.service-item__text h3 { color: #15295b; margin-bottom: .75rem; }

/* --------------------------------------------------------------------------
   Article Grid (News, Author, Category)
   -------------------------------------------------------------------------- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.article-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: box-shadow .2s;
}

.article-card:hover { box-shadow: 0 4px 18px rgba(0, 0, 0, .1); }

.article-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.article-card__title a {
  color: #15295b;
  text-decoration: none;
}

.article-card__title a:hover { color: #DD6420; text-decoration: none; }

.article-card__meta {
  font-size: .8rem;
  color: #888;
  margin: 0;
}

.article-card__excerpt {
  font-size: .95rem;
  color: #555;
  flex: 1;
}

.article-card__more {
  font-size: .85rem;
  font-weight: 700;
  color: #DD6420;
  text-decoration: none;
}

.article-card__more:hover { color: #15295b; text-decoration: none; }

/* --------------------------------------------------------------------------
   Blog Article
   -------------------------------------------------------------------------- */

.article-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d8e4f0;
  min-height: 320px;
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.70);
}

.article-header__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  padding: 140px 1.5rem 2.5rem;
  margin: 0 auto;
  text-align: center;
}

.article-header__title {
  font-size: 2.25rem;
  color: #15295b;
  margin-bottom: .75rem;
  line-height: 1.2;
}

.article-header__meta {
  color: #555;
  font-size: .9rem;
  margin: 0;
}

.article-header__meta a {
  color: #15295b;
  text-decoration: underline;
}

.article-header__meta a:hover { color: #DD6420; }

.article-body {
  padding: 3.5rem 0;
}

.article-body__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body__inner h3,
.article-body__inner h4 {
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.article-body__inner ul,
.article-body__inner ol {
  padding-left: 1.75rem;
}

/* Medical Review Block */
.medical-review-block {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: #F9F8F8;
  border-left: 4px solid #15295b;
  border-radius: 4px;
  font-size: .9rem;
  line-height: 1.6;
}

.medical-review-block strong { color: #15295b; }
.medical-review-block p { margin-bottom: .5rem; }

.review-date {
  font-size: .85rem;
  color: #666;
}

.review-date a { color: #15295b; }

/* --------------------------------------------------------------------------
   Tall page heroes (about, services, news, contact) — white overlays
   -------------------------------------------------------------------------- */

.hero--about-us,
.hero--services,
.hero--news,
.hero--contact {
  min-height: 0;
}

.hero--about-us .hero__inner,
.hero--services .hero__inner,
.hero--news .hero__inner,
.hero--contact .hero__inner {
  padding-top: 13rem;
  padding-bottom: 11rem;
}

.hero__overlay--white70 {
  background: rgba(255, 255, 255, 0.70);
}

.hero__title--about {
  color: #15295b;
  font-size: 2.75rem;
}

/* --------------------------------------------------------------------------
   About: Intro 2-col section
   -------------------------------------------------------------------------- */

.about-intro {
  background: #fff;
  padding: 3.5rem 1.25rem 2rem;
}

.about-intro__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-intro__sub {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #15295b;
  margin: 0 0 .5rem;
}

.about-intro__heading {
  font-size: 1.875rem;
  color: #15295b;
  margin: 0;
}

.about-intro__body p { color: #333; }

/* --------------------------------------------------------------------------
   About: Bio 2-col section
   -------------------------------------------------------------------------- */

.about-bio {
  background: #fff;
  padding: 2.5rem 1.25rem 3.5rem;
}

.about-bio__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-bio__photo-col h2 {
  color: #15295b;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.about-bio__photo-col img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: .75rem;
  display: block;
}

.about-bio__photo-col a { color: #15295b; font-weight: 600; }
.about-bio__photo-col a:hover { color: #DD6420; }

.about-bio__text-col h4 {
  color: #15295b;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.about-bio__text-col p { color: #333; line-height: 1.75; margin-bottom: 1em; }

.article-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-link-list li { margin-bottom: .6rem; }
.article-link-list a { color: #15295b; font-weight: 600; }
.article-link-list a:hover { color: #DD6420; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews-section { padding-top: 2.5rem; }

.reviews-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  line-height: 1.65;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.review__author {
  font-weight: 700;
  color: #15295b;
  margin-bottom: .2rem;
}

.review__date {
  font-size: .8rem;
  color: #999;
  margin-bottom: .75rem;
}

.review p { margin: 0; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-info { max-width: 700px; }
.contact-info h2 { color: #15295b; margin-bottom: 1.25rem; }
.contact-info h4 { color: #15295b; margin-top: 1.25rem; margin-bottom: .25rem; }
.contact-info p { margin-bottom: .75rem; }
.contact-info a { color: #15295b; font-weight: 600; }
.contact-info a:hover { color: #DD6420; }

.page-section--map { padding: 0; }
.contact-map { width: 100%; }
.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 450px;
}

/* --------------------------------------------------------------------------
   Author Profile
   -------------------------------------------------------------------------- */

.author-profile {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.author-profile__avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .5);
}

.author-profile__info h1 {
  color: #fff;
  margin-bottom: .5rem;
}

.author-profile__info p { color: rgba(255, 255, 255, .85); margin: 0; }

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */

.page-404 {
  text-align: center;
  padding: 200px 1.25rem 6rem;
}

.page-404 h1 { font-size: 3rem; color: #15295b; }
.page-404 p { font-size: 1.15rem; color: #555; margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   Terms of Service
   -------------------------------------------------------------------------- */

.terms-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.terms-content h2 { color: #15295b; margin-top: 2rem; }
.terms-content ol { counter-reset: terms-counter; }
.terms-content ol > li { margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: #15295b;
  color: rgba(255, 255, 255, .75);
}

/* Primary footer — 4 equal columns */

.site-footer__primary {
  padding: 3rem 0 1.5rem;
}

.site-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.site-footer__logo {
  filter: brightness(0) invert(1);
  opacity: .9;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.site-footer__widget-title {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin: 0 0 .875rem;
}

.site-footer__col p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  margin: 0;
}

.site-footer__col a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.site-footer__col a:hover { color: #fff; text-decoration: underline; }
.site-footer__col strong { color: rgba(255, 255, 255, .9); }

.site-footer__article-list,
.site-footer__quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__article-list li,
.site-footer__quick-links li {
  margin: 0 0 .5rem;
}

.site-footer__article-list a,
.site-footer__quick-links a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.site-footer__article-list a:hover,
.site-footer__quick-links a:hover { color: #fff; text-decoration: underline; }

/* Below footer — 2-column: copyright + phone */

.site-footer__below {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 1rem 0;
}

.site-footer__below-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.site-footer__copy,
.site-footer__phone {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

.site-footer__phone strong { color: rgba(255, 255, 255, .85); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .page-section__inner--bio       { grid-template-columns: 1fr; }
  .about-intro__inner             { grid-template-columns: 1fr; }
  .about-bio__inner               { grid-template-columns: 1fr; }
  .service-cards__inner           { grid-template-columns: 1fr 1fr; }
  .service-item                   { grid-template-columns: 1fr; direction: ltr; }
  .service-item:nth-child(even)   { direction: ltr; }
  .hero--about-us .hero__inner,
  .hero--services .hero__inner,
  .hero--news .hero__inner,
  .hero--contact .hero__inner    { padding-top: 8rem; padding-bottom: 7rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero__title { font-size: 2rem; }
  .hero__title--home { font-size: 2.25rem; }
  .hero__inner--home { padding-top: 4rem; padding-bottom: 3rem; }
  .hero__conditions { font-size: 1rem; margin-bottom: 2rem; }
  .article-header__title { font-size: 1.75rem; }
  .hero--home { min-height: 0; background-attachment: scroll; }

  .home-intro { padding: 3rem 1.25rem; }
  .home-intro__tagline { font-size: 1.5rem; }

  .services-banner,
  .hero--services,
  .hero--about-us,
  .hero--news,
  .hero--contact { background-attachment: scroll; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    background: #15295b;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
  }

  .site-nav.is-open { display: flex; }

  .site-nav ul {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
  }

  .site-nav a {
    color: #fff;
    font-size: 1.1rem;
    padding: .75rem 2rem;
  }

  .site-nav a:hover { color: #DD6420; }

.service-cards__inner { grid-template-columns: 1fr; }
  .services-banner__list { grid-template-columns: 1fr 1fr; }

  .author-profile { flex-direction: column; align-items: center; text-align: center; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__below-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.625rem; }
  .hero__title--home { font-size: 1.75rem; }
  .article-header__title { font-size: 1.5rem; }
  .services-banner__list { grid-template-columns: 1fr; }
  .cta-band__heading { font-size: 1.5rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
}
