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

:root {
  --primary:       #1a6b6e;
  --primary-dark:  #145558;
  --accent:        #2dd4bf;
  --bg:            #f7fbfb;
  --bg-alt:        #edf5f5;
  --text:          #1a1a1a;
  --muted:         #5a6b6c;
  --white:         #fff;
  --border:        #d0e4e5;
  --font:          system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius:        12px;
  --shadow:        0 2px 16px rgba(0,0,0,.08);
  --max-w:         1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  padding: .5rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  z-index: 200;
  border-radius: 0 0 8px 0;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  height: 76px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}

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

.brand-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .18s;
}
.nav-links a:hover { color: var(--primary); }

.header-call {
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .18s;
}
.header-call:hover { background: var(--primary-dark); }

/* ─── Section utilities ─── */
.section-pad {
  padding: 4.5rem 2rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

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

.section-heading {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-heading p { color: var(--muted); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, transform .15s, box-shadow .15s, border-color .18s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,107,110,.28);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--primary);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.trust-row span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: .875rem 1rem;
  box-shadow: var(--shadow);
}
.hero-card strong { font-size: .9rem; font-weight: 700; white-space: nowrap; }
.hero-card span   { font-size: .8rem; color: var(--muted); }

.status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .45; }
}

/* ─── Quick call banner ─── */
.quick-call {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.quick-call p    { font-size: .875rem; opacity: .8; }
.quick-call a    { color: var(--white); font-size: 2.1rem; font-weight: 800; text-decoration: none; letter-spacing: -.01em; }
.quick-call a:hover { opacity: .82; }
.quick-call span { font-size: .82rem; opacity: .65; }

/* ─── Services / pricing ─── */
.pricing-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pricing-table-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-table-block.featured-table {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.pricing-table-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.pricing-table th {
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  padding: .4rem .5rem;
  border-bottom: 2px solid var(--border);
}

.pricing-table th:last-child { text-align: right; }

.pricing-table td {
  padding: .55rem .5rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-alt);
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table-block .btn {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}

/* ─── Photo band ─── */
.photo-band {
  background: var(--bg-alt);
  padding: 4.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.photo-copy .eyebrow { margin-bottom: .75rem; }
.photo-copy h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.photo-copy p { color: var(--muted); }

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.photo-grid figure {
  border-radius: 10px;
  overflow: hidden;
}
.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .3s;
}
.photo-grid figure:hover img { transform: scale(1.04); }
.photo-grid figcaption {
  font-size: .75rem;
  color: var(--muted);
  padding: .4rem .25rem;
}

/* ─── Why grid ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  justify-content: center;
}
.why-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.why-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.why-grid article > span {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  font-weight: 800;
  font-size: .78rem;
  padding: .3rem .6rem;
  border-radius: 6px;
  margin-bottom: .75rem;
  letter-spacing: .04em;
}
.why-grid h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-grid p  { font-size: .875rem; color: var(--muted); line-height: 1.55; }

/* ─── Areas ─── */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.area-list span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .6rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
}

/* ─── Contact ─── */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
}
.contact-card > div > h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.contact-card > div > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.phone-display {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: .75rem;
  line-height: 1.2;
  word-break: break-all;
}
.phone-display:hover { text-decoration: underline; }

.email-line { font-size: .9rem; color: var(--muted); }
.email-line a { color: var(--primary); text-decoration: none; }
.email-line a:hover { text-decoration: underline; }

/* ─── Booking CTA ─── */
.booking-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .75rem;
  padding: 2rem 0;
}
.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.booking-cta-note {
  font-size: .85rem;
  color: var(--muted);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.site-footer p   { font-size: .875rem; opacity: .65; }
.site-footer a   { color: var(--white); font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.site-footer a:hover { opacity: .8; }

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: .25rem;
}

/* ─── Mobile call bar ─── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .875rem 1.5rem;
  padding-bottom: calc(.875rem + env(safe-area-inset-bottom));
  background: var(--primary);
  z-index: 90;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.mobile-call-bar a {
  display: block;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-media { order: -1; }
  .hero-media img { height: 340px; }

  .photo-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }

  .section-pad { padding: 3rem 1.25rem; }

  .hero-media img { height: 260px; }

  .pricing-tables { grid-template-columns: 1fr; }

  .contact-card { padding: 1.5rem; }

  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 220px; }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 400px) {
  .site-header { padding: 0 1rem; }
  .brand > span:last-child { display: none; }
}
