/* =============================================
   DR MICHAEL FANNING — RESPIRATORY & SLEEP PHYSICIAN
   Clean Clinical Design · FRACP Navy & Gold Palette
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
  --navy:        #1B3158;
  --navy-dark:   #0F1E36;
  --navy-mid:    #243F6E;
  --gold:        #B8873A;
  --gold-light:  #D4A55A;
  --gold-pale:   #F5EDD8;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --grey-light:  #EEF0F3;
  --grey:        #8A929E;
  --grey-dark:   #4A5568;
  --text:        #1A1F2E;
  --text-light:  #5A6270;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 1px 4px rgba(27,49,88,0.08);
  --shadow-md:   0 4px 20px rgba(27,49,88,0.12);
  --shadow-lg:   0 12px 48px rgba(27,49,88,0.16);
  --transition:  0.25s ease;

  --max-width:   1200px;
  --section-pad: 5rem;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); }

p { margin-bottom: 1.25rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT UTILITIES ---- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section { padding: var(--section-pad) 0; }
.section--grey { background: var(--off-white); }
.section--navy { background: var(--navy-dark); color: var(--white); }
.section--gold-pale { background: var(--gold-pale); }

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header h2 { margin-bottom: 0.75rem; }
.section__header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
  border: none;
}

.divider--left {
  margin-left: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,135,58,0.35);
  transform: translateY(-1px);
}

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

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

/* ---- SITE HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.site-header__title {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 300;
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
}

.site-nav .btn--phone {
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}
.site-nav .btn--phone:hover { background: var(--gold-light); color: var(--white); }

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

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,135,58,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(27,49,88,0.6) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero__content { color: var(--white); }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(184,135,58,0.4);
  border-radius: 2px;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero__credentials {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero__specialty {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  border: 2px solid rgba(184,135,58,0.3);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero__photo {
  width: 100%;
  max-width: 460px;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.hero__badges {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-dark);
  white-space: nowrap;
}

.hero__badge-icon { color: var(--gold); font-size: 1rem; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-bar__item svg { color: var(--gold); flex-shrink: 0; }

/* ---- ABOUT SECTION ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.about__sidebar {}

.about__photo-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.about__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__qualifications {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.about__qualifications h4 {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.qual-list { list-style: none; }
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.qual-list li:last-child { border-bottom: none; }
.qual-list__abbr {
  font-weight: 700;
  color: var(--gold-light);
  min-width: 55px;
  font-size: 0.8rem;
}

.about__body h2 { margin-bottom: 0.75rem; }
.about__body p { font-size: 1.02rem; line-height: 1.85; }

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .expertise-grid { grid-template-columns: 1fr 1fr; }
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

/* ---- SERVICES / PATIENT INFO ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy-dark);
}

.service-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- GP REFERRAL ---- */
.gp-section {
  background: var(--navy-dark);
  color: var(--white);
}

.gp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gp-content h2 { color: var(--white); margin-bottom: 0.75rem; }
.gp-content p { color: rgba(255,255,255,0.75); }

.gp-steps { margin: 2rem 0; }
.gp-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.gp-step__num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.gp-step__text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }
.gp-step__text strong { color: var(--white); }

.gp-contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.gp-contact-card h3 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail svg { color: var(--gold); flex-shrink: 0; }
.contact-detail strong { color: var(--white); display: block; font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.6; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

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

.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.blog-card__img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.6;
}

.blog-card__body { padding: 1.5rem; }

.blog-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--grey);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.read-more:hover { gap: 0.7rem; color: var(--gold); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 { margin-bottom: 0.75rem; }

.contact-details-list { margin: 2rem 0; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-item:last-child { border-bottom: none; }

.contact-item__icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.2rem;
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.contact-item__value a { color: var(--navy-dark); }
.contact-item__value a:hover { color: var(--gold); }

.map-embed {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: none;
  background: var(--grey-light);
}

/* ---- SITE FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 1.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand__tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item strong { color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold-light); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  max-width: 640px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1.5rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}

/* ---- INNER PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
  color: var(--white);
}

.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

/* ---- BLOG SINGLE ---- */
.post-content {
  max-width: 740px;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

.post-content h2, .post-content h3 { margin: 2rem 0 0.75rem; }
.post-content p { font-size: 1.05rem; line-height: 1.85; }
.post-content ul, .post-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.post-content li { margin-bottom: 0.4rem; color: var(--text-light); }

.post-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0.92rem;
}
.post-content th, .post-content td {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
}
.post-content td:first-child, .post-content th:first-child {
  white-space: nowrap;
}
.post-content th {
  font-weight: 700;
  color: var(--navy-dark);
  background: var(--grey-light);
}
.post-content td:first-child { color: var(--gold); font-weight: 600; }

.post-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid var(--grey-light);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.post-meta__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

.post-meta__date { font-size: 0.88rem; color: var(--grey); }

/* ---- DISCLAIMER BOX ---- */
.disclaimer-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.88rem;
  color: var(--text);
}

.disclaimer-box strong { color: var(--navy-dark); }

/* ---- MOBILE ---- */
@media (max-width: 960px) {
  :root { --section-pad: 3.5rem; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__photo { max-width: 360px; height: 420px; margin: 0 auto; }
  .hero__badges { display: none; }
  .hero__image-wrap::before { display: none; }
  .hero__actions { justify-content: center; }
  .hero__desc { margin: 0 auto 2rem; }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 1.25rem; }
}

/* =================== MEDICOLEGAL =================== */

/* Service cards grid */
.ml-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.ml-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.ml-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.ml-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.ml-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.ml-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* How to engage steps */
.ml-how-to {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.ml-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ml-step__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.ml-step__body strong {
  display: block;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.ml-step__body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Homepage teaser strip */
.ml-teaser {
  background: var(--navy-dark);
  padding: 2.25rem 0;
  border-top: 3px solid var(--gold);
}

.ml-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ml-teaser__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.ml-teaser__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.3;
}

/* Contact card inside medicolegal page */
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.contact-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.contact-card__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-card__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-card__item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.2rem;
}

.contact-card__item a,
.contact-card__item span {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-card__item a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 960px) {
  .ml-services-grid { grid-template-columns: 1fr 1fr; }
  .contact-card__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ml-services-grid { grid-template-columns: 1fr; }
  .ml-teaser__inner { flex-direction: column; align-items: flex-start; }
}
