/* ============================================================
   MEDICALOGIC LLC — MAIN STYLESHEET
   Brand: Burnt Orange #E8501A | Steel Blue #2E6DA4 | Slate Gray #5A5F63
   Fonts: Montserrat (headings) | Source Serif 4 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --orange:      #E8501A;
  --orange-dark: #C94215;
  --blue:        #2E6DA4;
  --blue-dark:   #245a8a;
  --slate:       #5A5F63;
  --near-black:  #1C1C1C;
  --dark-bg:     #161B22;
  --gray:        #9B9B9B;
  --off-white:   #F7F7F5;
  --white:       #FFFFFF;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Source Serif 4', Georgia, serif;
  --max-w:       1160px;
  --radius:      6px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--near-black);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--near-black);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--dark { background: var(--dark-bg); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 4px 16px rgba(232,80,26,0.3); }

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

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(90,95,99,0.12);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

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

.nav__logo img {
  height: 50px;
  width: auto;
}

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

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__phone {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--near-black);
  text-decoration: none;
}
.nav__phone:hover { color: var(--orange); text-decoration: none; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-black);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--dark-bg);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background-image: url('../images/photo-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,80,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,109,164,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__title span { color: var(--orange); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero__badge img {
  width: 160px;
  opacity: 0.95;
  filter: brightness(1.1);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--blue);
  padding: 0;
}

.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
}

.trust-item__value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-item__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--slate); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── SERVICE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--blue);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(46,109,164,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 20px; }
.card__link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link::after { content: '→'; }
.card__link:hover { text-decoration: none; color: var(--blue-dark); }

/* ── FEATURE LIST ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

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

.feature__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
}

.feature h3 { font-size: 1rem; margin-bottom: 6px; }
.feature p { color: var(--slate); font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* ── AUDIENCE ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.audience-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}

.audience-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  margin: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark-bg);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── PHOTO SPLIT SECTION ── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.photo-split__image {
  overflow: hidden;
  position: relative;
}

.photo-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.photo-split__image:hover img {
  transform: scale(1.02);
}

.photo-split__content {
  background: var(--dark-bg);
  color: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.photo-split__content .label { color: var(--orange); }
.photo-split__content h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2rem); }
.photo-split__content p { color: rgba(255,255,255,0.72); font-size: 1rem; margin: 0; }
.photo-split__content .btn { margin-top: 8px; align-self: flex-start; }

@media (max-width: 900px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split__image { min-height: 300px; }
  .photo-split__content { padding: 56px 32px; }
}

/* ── ABOUT PAGE LAYOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 96px;
}

.about-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.about-photo__badge {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.about-photo__badge img { width: 110px; }

.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--near-black);
}

.credential-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 7px;
}

.info-box {
  background: var(--off-white);
  border-left: 4px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* ── SERVICES PAGE ── */
.service-block {
  padding: 72px 0;
  border-bottom: 1px solid rgba(90,95,99,0.1);
}
.service-block:last-child { border-bottom: none; }
.service-block--alt { background: var(--white); }

/* Service section separators — stronger visual break */
#ppd, #record-reviews, #rebuttal {
  border-top: 3px solid rgba(46,109,164,0.15);
  position: relative;
}
#ppd::before, #record-reviews::before, #rebuttal::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  position: absolute;
  top: -3px;
  left: 24px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(46,109,164,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.service-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 52px;
  align-items: start;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 9px;
}

.deliverable-box {
  background: var(--off-white);
  border-radius: 10px;
  padding: 28px;
}

.deliverable-box h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ── FOR ATTORNEYS PAGE ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(46,109,164,0.2);
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 36px 0;
  position: relative;
}

.step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step__content h3 { margin-bottom: 6px; font-size: 1rem; padding-top: 10px; }
.step__content p { color: var(--slate); font-size: 0.9rem; margin: 0; }

.turnaround-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.turnaround-table th {
  background: var(--near-black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.turnaround-table td { padding: 14px 20px; border-bottom: 1px solid var(--off-white); }
.turnaround-table tr:last-child td { border-bottom: none; }
.turnaround-table tr:hover td { background: rgba(247,247,245,0.7); }

.highlight { color: var(--orange); font-weight: 600; font-family: var(--font-head); }

.rule-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--blue);
}

.rule-card h3 { color: var(--blue); font-size: 1rem; margin-bottom: 10px; }
.rule-card p { color: var(--slate); font-size: 0.9rem; margin: 0; }
.rule-card ul { padding-left: 18px; color: var(--slate); font-size: 0.9rem; margin: 8px 0 0 0; }
.rule-card ul li { margin-bottom: 4px; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.contact-info-card h3 { margin-bottom: 24px; font-size: 1.1rem; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(46,109,164,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item__icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-item__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.contact-item__value { font-size: 0.95rem; color: var(--near-black); font-weight: 400; }
.contact-item__value a { color: var(--near-black); }
.contact-item__value a:hover { color: var(--orange); text-decoration: none; }

.contact-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--off-white);
  font-size: 0.85rem;
  color: var(--slate);
  font-style: italic;
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-card h2 { margin-bottom: 8px; }
.form-card > p { color: var(--slate); margin-bottom: 32px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--near-black);
  background: var(--off-white);
  border: 1.5px solid rgba(90,95,99,0.2);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.1);
  background: var(--white);
}

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5F63' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 8px; }

.next-steps {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--blue);
}

.next-steps h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.next-steps p { font-size: 0.875rem; color: var(--slate); margin: 0; }

/* ── MAP ── */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 60px;
}
.map-container iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ── LEGAL PAGE ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 { margin-top: 48px; margin-bottom: 16px; padding-top: 48px; border-top: 1px solid rgba(90,95,99,0.15); }
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { margin-top: 28px; margin-bottom: 10px; color: var(--blue); font-size: 1rem; }
.legal-content p { color: var(--slate); font-size: 0.95rem; }
.legal-content ul { padding-left: 20px; color: var(--slate); font-size: 0.95rem; margin: 10px 0; }
.legal-content ul li { margin-bottom: 6px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark-bg);
  padding: 60px 0 48px;
}

.page-hero .label { margin-bottom: 10px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 1.05rem; max-width: 540px; }

/* ── FOOTER ── */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 52px;
}

.footer__brand img { height: 36px; margin-bottom: 16px; filter: brightness(10); }
.footer__tagline {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.footer__brand p { font-size: 0.875rem; line-height: 1.6; }

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.footer__links a:hover { color: var(--orange); text-decoration: none; }

.footer__contact-item { display: flex; flex-direction: column; margin-bottom: 12px; }
.footer__contact-item span:first-child {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.footer__contact-item a, .footer__contact-item span:last-child { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer__contact-item a:hover { color: var(--orange); text-decoration: none; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer__bottom-links a:hover { color: var(--orange); text-decoration: none; }

/* ── ANCHOR OFFSET ── */
.anchor-offset { scroll-margin-top: 96px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 300px; }
  .service-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .trust-strip__inner { flex-direction: column; align-items: stretch; }
  .trust-item { flex-direction: row; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-item:last-child { border-bottom: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Mobile nav open state */
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(90,95,99,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 999;
  }
  .nav.open .nav__phone { display: block; padding: 0 24px 16px; background: var(--white); position: absolute; top: 72px + 200px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.text-slate { color: var(--slate); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.fw-600 { font-weight: 600; font-family: var(--font-head); }
