/* ============================================================
   SEAN CARROLL YACHTING — Stylesheet
   Full-width, vivid palette, editorial feel.
   ============================================================ */

/* ------------------------------------------------------------
   1. Reset
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ------------------------------------------------------------
   2. Design Tokens
   ------------------------------------------------------------ */
:root {
  --navy:         #0A2540;
  --navy-light:   #133A5E;
  --gold:         #E8A020;
  --gold-hover:   #C98A10;
  --gold-light:   #FFF4D6;
  --warm-white:   #F6F3EE;
  --white:        #FFFFFF;
  --text:         #0A1628;
  --text-body:    #243447;
  --text-muted:   #52667A;
  --border:       #DDD9D2;
  --border-light: #EAE7E1;

  --pad:      clamp(24px, 7vw, 100px);
  --header-h: 68px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --shadow-xs: 0 1px 4px rgba(10,37,64,0.06);
  --shadow-sm: 0 4px 16px rgba(10,37,64,0.08), 0 1px 4px rgba(10,37,64,0.04);
  --shadow-md: 0 10px 40px rgba(10,37,64,0.12), 0 2px 10px rgba(10,37,64,0.06);
  --shadow-lg: 0 24px 72px rgba(10,37,64,0.16), 0 4px 20px rgba(10,37,64,0.08);
  --trans: 200ms ease;
}

/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

p { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--text); }

.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ------------------------------------------------------------
   4. Layout — full-width, fluid padding
   ------------------------------------------------------------ */
.container {
  width: 100%;
  padding: 0 var(--pad);
}

.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.section-title {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 { margin-bottom: 16px; }

.section-title p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

.bg-navy      { background: var(--navy); }
.bg-warm      { background: var(--warm-white); }
.bg-warm-white { background: var(--warm-white); }
.bg-white     { background: var(--white); }

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(232,160,32,0.40);
  transform: translateY(-1px);
}

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

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

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

/* keep old class names intact */
.btn-secondary       { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-secondary-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }

.btn-sm { padding: 10px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 18px 36px; font-size: 0.9375rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ------------------------------------------------------------
   6. Header & Nav
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--trans);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  padding: 0 clamp(20px, 5vw, 72px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: block;
  padding: 7px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
  white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--navy);
  background: var(--warm-white);
}

/* Dropdown */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.5;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--trans), visibility var(--trans), transform var(--trans);
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
}

.dropdown li a:hover {
  color: var(--navy);
  background: var(--warm-white);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--trans);
  white-space: nowrap;
}

.header-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--trans);
}

.hamburger:hover { background: var(--warm-white); }

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ------------------------------------------------------------
   7. Hero — full viewport height
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,37,64,0.90) 0%,
    rgba(10,37,64,0.64) 50%,
    rgba(10,37,64,0.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px var(--pad);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-content h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.hero-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--trans); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ------------------------------------------------------------
   8. Trust Bar — oversized stats
   ------------------------------------------------------------ */
.trust-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.trust-bar-inner {
  padding: 0 var(--pad);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.trust-item:last-child { border-right: none; }

.trust-icon { display: none; }

.trust-text strong {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.02em;
}

/* ------------------------------------------------------------
   9. Service Cards — real cards with gold top accent
   ------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.service-card-icon { display: none; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: default;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.learn-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans), color var(--trans);
  margin-top: auto;
}

.service-card:hover .learn-more {
  gap: 10px;
  color: var(--gold);
}

/* ------------------------------------------------------------
   10. Split Sections
   ------------------------------------------------------------ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse .split-image { order: 2; }
.split-section.reverse .split-content { order: 1; }

.split-image img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 580px;
}

.split-content h2 { margin-bottom: 20px; }
.split-content p  { margin-bottom: 16px; }
.split-content .btn { margin-top: 20px; }

/* Gold rule */
.rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
  border-radius: 2px;
}

.gold-line { display: none; }

/* ------------------------------------------------------------
   11. About Credentials
   ------------------------------------------------------------ */
.credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
  color: var(--text-body);
}

.credential-item:last-child { border-bottom: none; }

.credential-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* ------------------------------------------------------------
   12. Partners Strip
   ------------------------------------------------------------ */
.partners-strip {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.partners-label {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-name, .partner-badge {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  opacity: 0.65;
  transition: opacity var(--trans);
}

.partner-name:hover, .partner-badge:hover { opacity: 1; }

/* ------------------------------------------------------------
   13. CTA Banner
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--navy);
  padding: 100px var(--pad);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-banner .btn-group { justify-content: center; }

/* ------------------------------------------------------------
   14. FAQ
   ------------------------------------------------------------ */
.faq-section { padding: 96px 0; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

details.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

details.faq-item:last-child { border-bottom: none; }
details.faq-item[open] { background: var(--warm-white); }

details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--trans);
  gap: 16px;
}

details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { background: var(--warm-white); }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform var(--trans);
}

details.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 6px 28px 24px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--trans);
}
.faq-answer a:hover { text-decoration-color: var(--gold); }

/* ------------------------------------------------------------
   15. Service Area Grid
   ------------------------------------------------------------ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 44px 0;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 22px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-xs);
  transition: transform var(--trans), box-shadow var(--trans);
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.area-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   16. Contact Cards
   ------------------------------------------------------------ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon { display: none; }

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

.contact-card a { color: var(--gold); font-weight: 600; transition: color var(--trans); }
.contact-card a:hover { color: var(--gold-hover); }

/* ------------------------------------------------------------
   17. Content / Prose (service pages)
   ------------------------------------------------------------ */
.content-block { padding: 72px 0; }

.content-block + .content-block {
  border-top: 1px solid var(--border-light);
  padding-top: 64px;
}

.content-block h2 { margin-bottom: 20px; }
.content-block h3 { margin-bottom: 14px; }
.content-block p  { margin-bottom: 16px; }

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

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
}

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

.callout {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 28px;
  margin: 32px 0;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   18. Images
   ------------------------------------------------------------ */
.img-full    { width: 100%; border-radius: var(--r-md); }
.img-rounded { border-radius: var(--r-lg); }
.img-shadow  { box-shadow: var(--shadow-lg); }

.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.img-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.img-body {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  margin: 40px 0;
}

/* ------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy);
  padding-top: 72px;
}

.footer-inner {
  padding: 0 var(--pad) 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px;
}

.footer-logo {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}

.footer-col ul li a:hover { color: var(--white); }
.footer-col a { color: rgba(255,255,255,0.65); transition: color var(--trans); }
.footer-col a:hover { color: var(--white); }
.footer-col .btn { margin-top: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px var(--pad);
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom p a { color: rgba(255,255,255,0.4); transition: color var(--trans); }
.footer-bottom p a:hover { color: rgba(255,255,255,0.7); }

/* ------------------------------------------------------------
   20. Area / Coverage Table
   ------------------------------------------------------------ */
.area-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.area-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.area-table tr:last-child td { border-bottom: none; }
.area-table tr:nth-child(even) td { background: var(--warm-white); }

/* ------------------------------------------------------------
   21. Utilities
   ------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .split-section.reverse .split-image { order: unset; }
  .split-section.reverse .split-content { order: unset; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
    --pad: 24px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 20px 24px;
    display: none;
    flex-direction: column;
    z-index: 999;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.nav-open { display: flex; }

  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav > ul > li:last-child { border-bottom: none; }

  .main-nav > ul > li > a {
    padding: 14px 4px;
    font-size: 1rem;
    border-radius: 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 10px 16px;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 10px 6px; font-size: 0.9375rem; }

  .hamburger { display: flex; }
  .header-right .btn-sm { display: none; }

  .hero { min-height: 72svh; }
  .hero-content > p { font-size: 1.0625rem; }

  .trust-bar-inner { flex-direction: column; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    text-align: left;
    flex: none;
    min-width: 0;
  }
  .trust-item:last-child { border-bottom: none; }
  .trust-text { display: flex; align-items: baseline; gap: 10px; }
  .trust-text strong { font-size: 1.875rem; display: inline; margin-bottom: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-col:first-child { grid-column: auto; }
  .img-row { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }
  .faq-section { padding: 72px 0; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  .logo-img { height: 38px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .hero-content > p { font-size: 1rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
