@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --primary: #2563eb;
  --accent: #60a5fa;
  --dark: #1e3a8a;
  --banner-h: 3.25rem;
  --radius: 1rem;
  --shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1e293b;
  line-height: 1.65;
  padding-top: var(--banner-h);
  background: #fff;
}

/* ── Owner CTA banner ── */
.cta-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  min-height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, var(--dark) 100%);
  color: #e2e8f0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-text {
  margin: 0;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.45);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.55);
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: var(--banner-h);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.nav-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  padding: 0.55rem 1.1rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 30, 40, 0.92) 0%, rgba(6, 30, 40, 0.75) 45%, rgba(6, 30, 40, 0.4) 100%),
    linear-gradient(0deg, var(--dark) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 4rem 2rem 5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0f2fe;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-tagline {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #cbd5e1;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.65rem;
  border-radius: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 80%, #fff));
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.trust-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero card */
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card h2 {
  margin: 0 0 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  color: var(--dark);
}

.hero-card p {
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.95rem;
}

.hero-card-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.hero-card-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 25%, #fff);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
}

.btn-card {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  text-align: center;
}

.btn-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 40%, transparent);
}

/* ── Sections ── */
section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 36rem;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--accent) 18%, #fff);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--dark);
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* Services */
.alt-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--dark);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* Conversion band */
.convert-band {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
}

.convert-band .section-title {
  color: #fff;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.convert-band .section-subtitle {
  color: #cbd5e1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.convert-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.convert-step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
}

.step-num {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.convert-step p {
  margin: 0;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.btn-convert {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-size: 1.05rem;
  padding: 1.1rem 2.25rem;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.btn-convert:hover {
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
}

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.contact-item span,
.contact-item a {
  font-size: 1.05rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  min-height: 280px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--dark);
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.float-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
  .float-cta span {
    display: none;
  }
  .float-cta {
    padding: 1rem;
    border-radius: 50%;
  }
}

footer {
  padding: 2.5rem 1.5rem;
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
  font-size: 0.875rem;
}

footer strong {
  color: #e2e8f0;
}

footer p {
  margin: 0.35rem 0;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Social proof strip */
.proof-strip {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  margin-top: -2rem;
  padding: 1.25rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}

.proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #fff);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.proof-score {
  font-size: 1.05rem;
  color: var(--dark);
}

.proof-stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}

.proof-text {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

/* Mobile action dock */
.mobile-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  gap: 0.65rem;
}

@media (max-width: 768px) {
  .mobile-dock {
    display: flex;
  }

  .float-cta {
    display: none;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

.dock-btn {
  flex: 1;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.dock-call {
  background: #f1f5f9;
  color: var(--dark);
  border: 1px solid #e2e8f0;
}

.dock-book {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.35);
}

.float-cta-label {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .cta-banner-btn:hover,
  .float-cta:hover,
  .why-card:hover,
  .service-card:hover {
    transform: none;
  }
}
