/* =========================================
   THE YACHT DOCTOR — Stylesheet
   Inspired by Boatyard.com · Marine Premium
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:       #0b2240;
  --navy-dark:  #06111f;
  --navy-mid:   #143360;
  --teal:       #2a9d8f;
  --teal-light: #3dbdb5;
  --teal-glow:  rgba(42,157,143,0.15);
  --gold:       #c8a84b;
  --white:      #ffffff;
  --cream:      #f6f2eb;
  --cream-2:    #ede8df;
  --text:       #0b1e35;
  --text-mid:   #3d5270;
  --text-light: #6b7e96;
  --on-dark:       #f0e6d0;
  --on-dark-mid:   rgba(240,230,208,0.72);
  --on-dark-dim:   rgba(240,230,208,0.42);
  --border:     #dce3ed;
  --border-teal:rgba(42,157,143,0.28);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(11,34,64,0.09);
  --shadow-md: 0 6px 32px rgba(11,34,64,0.13);
  --shadow-lg: 0 16px 56px rgba(11,34,64,0.18);
  --max-w:     1180px;
  --nav-h:     76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  border: 1.5px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42,157,143,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(240,230,208,0.38);
}
.btn-outline:hover {
  background: rgba(240,230,208,0.08);
  border-color: var(--on-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  background: rgba(11,34,64,0.04);
}

.btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: 9px 20px;
  font-size: 12px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--teal);
  transition: all 0.18s;
}
.btn-nav:hover { background: var(--teal-light); border-color: var(--teal-light); }

.btn-full { width: 100%; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

/* Keep old class working too */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

/* On dark backgrounds */
.eyebrow-light,
.on-dark .eyebrow,
.on-dark .section-eyebrow {
  color: var(--teal-light);
}
.eyebrow-light::before,
.on-dark .eyebrow::before,
.on-dark .section-eyebrow::before {
  background: var(--teal-light);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--text);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.14;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

h4 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p { color: var(--text-mid); line-height: 1.8; }

.lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 640px;
  margin-bottom: 48px;
}

.center { text-align: center; }
.center .lead,
.center > p { margin-left: auto; margin-right: auto; }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.bg-cream  { background: var(--cream); }
.bg-dark   { background: var(--navy); }
.bg-darkest { background: var(--navy-dark); }

.bg-dark h2, .bg-darkest h2  { color: var(--on-dark); }
.bg-dark h3, .bg-darkest h3  { color: var(--on-dark); }
.bg-dark p,  .bg-darkest p   { color: var(--on-dark-mid); }
.bg-dark .section-eyebrow::before,
.bg-darkest .section-eyebrow::before { background: var(--teal-light); }
.bg-dark .section-eyebrow,
.bg-darkest .section-eyebrow { color: var(--teal-light); }

/* Full-width teal divider */
.teal-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 50%, transparent 100%);
}

/* =========================================
   NAVIGATION
   ========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(11,34,64,0.06);
}

.navbar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 56px; width: auto; }

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  padding: 7px 15px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-mid);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover  { color: var(--navy); background: var(--cream); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.navbar .btn-nav { margin-left: 16px; flex-shrink: 0; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 3px solid var(--teal);
  border-top: 4px solid var(--navy);
  overflow: hidden;
}

/* Subtle teal accent behind logo column */
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, transparent 10%, rgba(42,157,143,0.05) 60%, rgba(11,34,64,0.04) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.hero-text { max-width: 580px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero h1 { color: var(--navy); margin-bottom: 24px; }

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.84;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-logo img {
  height: 340px;
  width: auto;
  opacity: 1;
}

/* =========================================
   VALUE STRIP
   ========================================= */
.value-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.value-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
  text-align: center;
}

.value-item strong {
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.value-item span {
  color: var(--on-dark-dim);
  font-size: 12px;
  margin-top: 4px;
}

.value-divider {
  width: 1px;
  background: rgba(255,255,255,0.09);
  margin: 14px 0;
  align-self: stretch;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--cream);
  padding: 80px 0 72px;
  border-bottom: 3px solid var(--teal);
  border-top: 4px solid var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(11,34,64,0.04) 100%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-eyebrow { color: var(--teal); }
.page-hero .section-eyebrow::before { background: var(--teal); }
.page-hero h1  { color: var(--navy); margin-bottom: 16px; }
.page-hero > .container > p { color: var(--text-mid); font-size: 1.1rem; max-width: 520px; }

/* =========================================
   FEATURE CARDS
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.22s, transform 0.22s;
}

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

.bg-cream .feature-card { background: var(--white); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  background: rgba(42,157,143,0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.feature-card p  { font-size: 14px; line-height: 1.78; color: var(--text-mid); }

/* Stats row */
.stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 52px 0;
}
.stat-block {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label { font-size: 12.5px; color: var(--text-light); letter-spacing: 0.04em; }

/* =========================================
   COMPARE SECTION
   ========================================= */
.compare-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.compare-text p { margin-bottom: 16px; }
.compare-cards  { display: flex; flex-direction: column; gap: 14px; }

.compare-card {
  border-radius: var(--radius);
  padding: 26px;
}

.compare-card h4 { margin-bottom: 14px; }
.compare-card ul { display: flex; flex-direction: column; gap: 10px; }
.compare-card li { font-size: 14px; line-height: 1.55; }

.compare-bad  { background: #fef2f2; border: 1px solid #fecaca; }
.compare-bad h4  { color: #b91c1c; }
.compare-bad li  { color: #7f1d1d; }

.compare-good { background: rgba(42,157,143,0.07); border: 1px solid rgba(42,157,143,0.28); }
.compare-good h4 { color: #1a7a72; }
.compare-good li { color: var(--text-mid); }

/* =========================================
   FOOTER CTA
   ========================================= */
.footer-cta { padding: 100px 0; }
.footer-cta h2 { margin-bottom: 18px; }

/* =========================================
   SERVICES — Included
   ========================================= */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.included-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.included-item:hover { box-shadow: var(--shadow); }

.check { color: var(--teal); font-size: 1rem; font-weight: 700; flex-shrink: 0; margin-top: 3px; width: 18px; }

.included-item strong { display: block; color: var(--navy); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.included-item p { font-size: 13.5px; line-height: 1.7; }

/* =========================================
   SERVICES — Table
   ========================================= */
.table-wrap { overflow-x: auto; margin: 24px 0 12px; }

.pricing-table { width: 100%; border-collapse: collapse; font-size: 15px; }

.pricing-table th {
  background: var(--navy);
  color: var(--on-dark);
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table td.highlight { color: var(--teal); font-weight: 700; }
.table-note { font-size: 13px; color: var(--text-light); margin-top: 10px; }

/* =========================================
   SERVICES — Add-ons
   ========================================= */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.addon-card:hover { box-shadow: var(--shadow); border-color: var(--border-teal); }
.addon-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.addon-card p  { font-size: 13.5px; line-height: 1.7; }

/* =========================================
   SERVICES — Scope
   ========================================= */
.scope-grid { max-width: 780px; }
.scope-list { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }

.scope-item { flex: 1; min-width: 220px; border-radius: var(--radius); padding: 24px; }

.in-scope  { background: rgba(42,157,143,0.07); border: 1px solid rgba(42,157,143,0.25); }
.out-scope { background: #fef8f8; border: 1px solid #f0d0d0; }

.scope-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.scope-label.in  { color: var(--teal); }
.scope-label.out { color: #b91c1c; }
.scope-item li   { font-size: 14px; color: var(--text-mid); padding: 4px 0; }
.scope-note      { margin-top: 20px; font-size: 14px; color: var(--text-light); }
.scope-note a    { color: var(--teal); text-decoration: underline; }

/* =========================================
   ABOUT PAGE — Team Intro
   ========================================= */
.team-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.team-intro h2 { color: var(--navy); }
.team-intro p  { color: var(--text-mid); font-size: 1.08rem; line-height: 1.84; }

/* =========================================
   ABOUT PAGE — Bio Sections
   ========================================= */
.bio-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.bio-section:last-of-type { border-bottom: none; }

.bio-section.reversed {
  grid-template-columns: 1fr 360px;
}
.bio-section.reversed .bio-photo { order: 2; }
.bio-section.reversed .bio-content { order: 1; }

.bio-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-2);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

.bio-photo-placeholder span { font-size: 2.5rem; display: block; }

.bio-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.bio-name-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-top: 3px solid var(--teal);
}
.bio-name-card h3 { color: var(--on-dark); font-size: 1.1rem; margin-bottom: 4px; }
.bio-name-card .bio-title { color: var(--teal-light); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.bio-name-card .bio-email { color: var(--on-dark-dim); font-size: 13px; margin-top: 8px; display: block; transition: color 0.15s; }
.bio-name-card .bio-email:hover { color: var(--teal-light); }

.bio-content {}
.bio-content .section-eyebrow { margin-bottom: 12px; }
.bio-content h2 { margin-bottom: 6px; }
.bio-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: block;
}

.bio-content p { margin-bottom: 18px; }
.bio-content p:last-child { margin-bottom: 0; }

/* Bio highlight pull quote */
.bio-highlight {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
  background: rgba(42,157,143,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bio-highlight p {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.72;
  margin: 0;
}

/* Stats row on About */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* Values grid on About */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-md); }

.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #1a7068 100%);
  color: var(--white); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.team-info h3  { color: var(--navy); margin-bottom: 3px; }
.team-role     { font-size: 11px; color: var(--teal); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px !important; }
.team-email    { font-size: 14px; color: var(--teal); margin-top: 12px; display: block; }
.team-email:hover { text-decoration: underline; }

/* About image placeholder (old style, kept for compat) */
.about-image-placeholder {
  border-radius: var(--radius);
  background: var(--cream-2);
  border: 2px dashed var(--border);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner { text-align: center; color: var(--text-light); }
.about-img-icon  { font-size: 3rem; display: block; margin-bottom: 12px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}

.contact-form-wrap h2, .contact-info h2 { color: var(--navy); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group   { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 11px; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 4px; font-size: 15px; font-family: var(--font-body);
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.12);
}

.form-group select {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7e96'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.info-block {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.info-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }

.info-block strong {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 5px; font-weight: 600;
}
.info-block p { font-size: 15px; line-height: 1.65; }
.info-block a { color: var(--teal); }
.info-block a:hover { text-decoration: underline; }

.response-note {
  margin-top: 20px; background: rgba(42,157,143,0.07);
  border: 1px solid rgba(42,157,143,0.2); border-radius: var(--radius); padding: 20px;
}
.response-note strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 14px; }
.response-note p { font-size: 14px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  padding: 40px 0;
  border-top: 3px solid var(--teal);
}

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

.footer-brand { display: flex; align-items: center; }
.footer-brand img { height: 46px; width: auto; }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--on-dark-mid);
  letter-spacing: 0.02em; transition: color 0.15s;
}
.footer-links a:hover { color: var(--teal-light); }

.footer-copy { font-size: 12px; color: var(--on-dark-dim); letter-spacing: 0.02em; }

/* =========================================
   PRICING TIERS
   ========================================= */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tier-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.tier-card.tier-featured {
  border-color: var(--teal);
  box-shadow: 0 4px 28px rgba(42,157,143,0.13);
}
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.tier-desc { font-size: 13.5px; color: var(--text-mid); margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.tier-features { list-style: none; padding: 0; margin: 0; }
.tier-features li { font-size: 14px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border-light, #f0ebe3); display: flex; gap: 10px; align-items: flex-start; }
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tier-cta { margin-top: 28px; }

/* Rates table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 15px;
}
.rates-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rates-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
.rates-table tr:nth-child(even) td { background: var(--cream); }
.rates-table td:first-child { font-weight: 600; color: var(--navy); }
.rates-table td.rate-price { color: var(--teal); font-weight: 700; white-space: nowrap; }

/* Fixed-bid services grid */
.fixedbid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.fixedbid-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
}
.fixedbid-item h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.fixedbid-item p { font-size: 13px; color: var(--text-mid); margin: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1040px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
  .compare-section { grid-template-columns: 1fr; gap: 52px; }
  .bio-section { grid-template-columns: 1fr; gap: 40px; }
  .bio-section.reversed .bio-photo { order: 0; }
  .bio-section.reversed .bio-content { order: 0; }
  .bio-photo-placeholder { aspect-ratio: 16/9; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero-content { padding: 52px 20px; }
  .about-stats { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .value-strip-inner { flex-direction: column; }
  .value-divider { display: none; }
  .value-item { padding: 14px 28px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero h1 { font-size: 2.5rem; }
  .logo img { height: 44px; }
}
