/* ============================================================
   NORTHSTAR ACCOUNTING INC — Main Stylesheet
   Colors: Teal #2A8B8B | Charcoal #2D2D2D | Silver #C5C5C5
   ============================================================ */

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

:root {
  --teal:        #2A8B8B;
  --teal-dark:   #1f6b6b;
  --teal-light:  #e6f4f4;
  --charcoal:    #2D2D2D;
  --silver:      #C5C5C5;
  --white:       #ffffff;
  --bg-light:    #f8f9fc;
  --text:        #3a3a3a;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  0.25s ease;
  --max-w:       1200px;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-head:   'Montserrat', 'Inter', system-ui, sans-serif;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-sub {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,139,139,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 58px; width: auto; }

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--teal);
  background: rgba(42,139,139,0.15);
}
.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

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

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a3a3a 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,139,139,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.accent { color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
/* Outline button on dark hero background needs to be white */
.hero .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  width: 280px;
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card--offset { margin-right: 40px; }
.card-icon { margin-bottom: 14px; }
.hero-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.card-amount {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 2px;
}
.card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.hero-wave { line-height: 0; margin-top: -2px; }
.hero-wave svg { width: 100%; display: block; }

/* ---------- WHY US ---------- */
.why-us {
  background: var(--bg-light);
  padding: 96px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.why-icon { margin-bottom: 20px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- SERVICES SNAP ---------- */
.services-snap { padding: 96px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.service-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card--accent {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a3a3a 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card--accent::before { background: var(--teal); }
.service-card--accent h3 { color: var(--white); }
.service-card--accent p { color: rgba(255,255,255,0.75); }
.service-card--accent .service-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.service-card--accent .service-link { color: var(--teal); }

.service-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card--accent .service-num { color: rgba(42,139,139,0.3); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.service-card > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.service-list { margin-bottom: 28px; }
.service-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }
.services-cta { text-align: center; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
}
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,0.8); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); }
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--teal); }
.footer-contact address { font-style: normal; }
.footer-contact p { margin-bottom: 8px; font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-disclaimer { font-size: 0.75rem !important; margin-top: 4px; }
.footer-credit { font-size: 0.72rem !important; margin-top: 10px; color: rgba(255,255,255,0.35) !important; }
.footer-credit a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px rgba(255,255,255,0.5), 0 0 18px rgba(255,255,255,0.2);
  transition: text-shadow 0.3s, color 0.3s;
}
.footer-credit a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 28px rgba(255,255,255,0.4);
}

/* ---------- SERVICES PAGE ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a3a3a 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.services-full { padding: 96px 0; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
.service-block-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.service-block-text p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.75; }
.service-items { display: flex; flex-direction: column; gap: 14px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.service-item-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-item-icon svg { color: var(--teal); }
.service-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.service-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.service-visual {
  background: linear-gradient(135deg, var(--teal-light) 0%, #d1eeee 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  text-align: center;
}
.service-visual-icon {
  width: 80px;
  height: 80px;
  background: var(--teal);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-visual-icon svg { color: var(--white); }
.service-visual h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.service-visual p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding: 96px 0; background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--teal); }
.contact-item h4 { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item a, .contact-item p { font-size: 0.95rem; color: var(--text-muted); }
.contact-item a:hover { color: var(--teal); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,139,139,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border: none; cursor: pointer; }
.form-note { margin-top: 12px; font-size: 0.78rem; color: var(--text-muted); text-align: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg { color: var(--teal); }
.form-success h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ---------- LANDING PAGE ---------- */
.landing-body { min-height: 100vh; display: flex; flex-direction: column; background: linear-gradient(135deg, var(--charcoal) 0%, #1a3a3a 100%); }
.landing-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 24px; text-align: center; }
.landing-content { max-width: 600px; }
.landing-logo { height: 80px; width: auto; margin: 0 auto 32px; filter: brightness(0) invert(1); }
.landing-tagline { font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 24px; }
.landing-content h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.landing-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }
.landing-contact { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.landing-contact a { font-size: 1.1rem; font-weight: 600; }

/* ---------- RESPONSIVE ---------- */

/* Large tablet / small desktop */
@media (max-width: 1100px) {
  .hero-container { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block--reverse { direction: ltr; }
  .hero-card { width: 260px; }
}

/* Tablet */
@media (max-width: 900px) {
  .nav-container { height: 64px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--charcoal);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 16px; text-align: center; padding: 14px; }

  .hero { padding: 60px 0 0; }
  .hero-container { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero-visual { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-card { width: calc(50% - 8px); max-width: 280px; }
  .hero-card--offset { margin-right: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .cta-container { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 36px 28px; }

  .services-full { padding: 64px 0; }
  .why-us, .services-snap { padding: 64px 0; }
  .cta-banner { padding: 64px 0; }
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .logo-img { height: 48px; }

  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }
  .hero-trust { gap: 12px; }
  .hero-visual { flex-direction: column; align-items: center; }
  .hero-card { width: 100%; max-width: 340px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }

  .service-card { padding: 28px 20px; }
  .service-num { font-size: 2rem; }
  .service-card h3 { font-size: 1.2rem; }

  .cta-banner { padding: 48px 0; }
  .cta-text h2 { font-size: 1.4rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  .footer-container { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px 32px; }
  .footer-brand { grid-column: auto; }
  .footer-logo { height: 44px; }

  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: 1.6rem; }

  .contact-form-wrap { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { font-size: 0.95rem; }

  .service-block { gap: 28px; margin-bottom: 48px; padding-bottom: 48px; }
  .service-visual { min-height: 240px; padding: 32px 24px; }

  .section-header { margin-bottom: 36px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .nav-cta { font-size: 0.9rem; }
}

/* ---------- FOCUS / ACCESSIBILITY ---------- */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--teal);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }
