:root {
  --bp-ink: #0c1222;
  --bp-ink-soft: #1a2336;
  --bp-accent: #2dd4bf;
  --bp-accent-deep: #14b8a6;
  --bp-sand: #f7f8fb;
  --bp-sand-deep: #e8ecf4;
  --bp-muted: #64748b;
  --bp-line: rgba(12, 18, 34, 0.1);
  --bp-white: #ffffff;
  --bp-display: "Syne", system-ui, sans-serif;
  --bp-sans: "Outfit", system-ui, sans-serif;
  --bp-nav-h: 4.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--bp-sans);
  color: var(--bp-ink);
  background: var(--bp-white);
  line-height: 1.55;
  min-height: 100vh;
}

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

/* Nav — always readable (light bar + dark text) */
.bp-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.94);
  border-bottom: 1px solid var(--bp-line);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
}

.bp-nav.is-scrolled,
.bp-nav.is-open {
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.06);
}

.bp-nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--bp-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bp-brand {
  font-family: var(--bp-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bp-ink);
}

.bp-nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bp-ink);
}

.bp-nav-desktop a:not(.bp-btn):hover { color: var(--bp-accent-deep); }

.bp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.45rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bp-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--bp-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bp-nav.is-open .bp-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bp-nav.is-open .bp-nav-toggle span:nth-child(2) { opacity: 0; }
.bp-nav.is-open .bp-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bp-nav-mobile {
  display: none;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  background: rgba(247, 248, 251, 0.98);
  border-top: 1px solid var(--bp-line);
}

.bp-nav.is-open .bp-nav-mobile { display: grid; }
.bp-nav-mobile[hidden] { display: none !important; }

.bp-nav-mobile a {
  padding: 0.8rem 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--bp-line);
  color: var(--bp-ink);
}

.bp-nav-mobile .bp-btn { margin-top: 0.5rem; border-bottom: 0; }

/* Buttons */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: var(--bp-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bp-btn:hover { transform: translateY(-1px); }
.bp-btn-block { width: 100%; }

.bp-btn-accent {
  background: var(--bp-accent);
  color: var(--bp-ink) !important;
}
.bp-btn-accent:hover { background: var(--bp-accent-deep); color: #fff !important; }

.bp-btn-ink {
  background: var(--bp-ink);
  color: #fff !important;
}
.bp-btn-ink:hover { background: var(--bp-ink-soft); }

.bp-btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: transparent;
}
.bp-btn-ghost:hover {
  background: #fff;
  color: var(--bp-ink) !important;
}

.bp-btn-outline {
  border-color: var(--bp-ink);
  color: var(--bp-ink) !important;
  background: transparent;
}
.bp-btn-outline:hover {
  background: var(--bp-ink);
  color: #fff !important;
}

/* Hero */
.bp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: calc(var(--bp-nav-h) + 2rem) 1.25rem 4.5rem;
  overflow: hidden;
}

.bp-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(12, 18, 34, 0.92) 0%, rgba(12, 18, 34, 0.55) 48%, rgba(12, 18, 34, 0.35) 100%),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&q=80&w=2000") center / cover no-repeat;
  transform: scale(1.05);
  animation: bp-zoom 16s ease-out forwards;
}

.bp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  animation: bp-rise 0.85s ease-out both;
}

.bp-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--bp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bp-hero-brand {
  margin: 0 0 1rem;
  font-family: var(--bp-display);
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.bp-hero-lede {
  margin: 0 0 1.75rem;
  max-width: 30rem;
  color: rgba(247, 248, 251, 0.88);
  font-size: 1.1rem;
}

.bp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
.bp-section { padding: 4.5rem 1.25rem; }
.bp-section-sand { background: var(--bp-sand); }
.bp-section-white { background: var(--bp-white); }
.bp-section-ink {
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.18), transparent 42%),
    var(--bp-ink);
  color: #fff;
}

.bp-wrap { max-width: 72rem; margin: 0 auto; }
.bp-wrap-narrow { max-width: 44rem; margin: 0 auto; }

.bp-section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.bp-section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
}

.bp-kicker {
  margin: 0 0 0.55rem;
  color: var(--bp-accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bp-section-ink .bp-kicker { color: var(--bp-accent); }

.bp-title {
  margin: 0;
  font-family: var(--bp-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.bp-lead {
  margin: 0.75rem 0 0;
  color: var(--bp-muted);
  font-size: 1.05rem;
}

.bp-section-ink .bp-lead { color: rgba(247, 248, 251, 0.7); }

.bp-copy {
  margin: 1.15rem 0 0;
  color: var(--bp-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bp-page-header {
  padding: calc(var(--bp-nav-h) + 3rem) 1.25rem 2.5rem;
  background: var(--bp-sand);
  border-bottom: 1px solid var(--bp-line);
  text-align: center;
}

.bp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.bp-actions-left { justify-content: flex-start; }

.bp-empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border: 1px dashed var(--bp-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  color: var(--bp-muted);
}

.bp-section-ink .bp-empty {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(247, 248, 251, 0.75);
}

.bp-empty strong {
  display: block;
  color: inherit;
  margin-bottom: 0.35rem;
  font-family: var(--bp-display);
  font-size: 1.2rem;
}

/* About split */
.bp-split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.bp-split-visual figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(12, 18, 34, 0.16);
}

.bp-split-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bp-pillars {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.bp-pillars li {
  padding-top: 1rem;
  border-top: 1px solid var(--bp-line);
}

.bp-pillars strong {
  display: block;
  font-family: var(--bp-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.bp-pillars span { color: var(--bp-muted); font-size: 0.98rem; }

/* Services */
.bp-service-list {
  display: grid;
  gap: 0;
  max-width: 52rem;
  margin: 0 auto;
}

.bp-service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(247, 248, 251, 0.14);
}

.bp-service-row:first-child { border-top: 1px solid rgba(247, 248, 251, 0.14); }

.bp-service-row h3 {
  margin: 0 0 0.3rem;
  font-family: var(--bp-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.bp-service-row p {
  margin: 0;
  color: rgba(247, 248, 251, 0.65);
  font-size: 0.95rem;
}

.bp-service-price {
  flex-shrink: 0;
  font-family: var(--bp-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bp-accent);
}

.bp-service-cards {
  display: grid;
  gap: 1rem;
}

.bp-service-card {
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: var(--bp-white);
  border: 1px solid var(--bp-line);
}

.bp-service-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.bp-service-card h3 {
  margin: 0;
  font-family: var(--bp-display);
  font-size: 1.25rem;
}

.bp-service-card p {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.95rem;
}

.bp-price-tag {
  font-family: var(--bp-display);
  font-weight: 700;
  color: var(--bp-accent-deep);
  white-space: nowrap;
}

/* Gallery */
.bp-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.bp-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.85rem;
  background: var(--bp-sand-deep);
}

.bp-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.bp-gallery figure:hover img { transform: scale(1.04); }

.bp-gallery figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.85rem;
  color: var(--bp-muted);
}

/* Reviews */
.bp-review-grid {
  display: grid;
  gap: 1rem;
}

.bp-review {
  padding: 1.35rem;
  border-radius: 1rem;
  background: var(--bp-white);
  border: 1px solid var(--bp-line);
}

.bp-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.bp-review p {
  margin: 0.7rem 0 0;
  color: var(--bp-muted);
}

.bp-review-author {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Staff */
.bp-staff-grid {
  display: grid;
  gap: 1.15rem;
}

.bp-staff-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
  border-radius: 1rem;
  background: var(--bp-white);
  border: 1px solid var(--bp-line);
}

.bp-staff-photo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.9rem;
  object-fit: cover;
}

.bp-staff-photo-fallback {
  display: grid;
  place-items: center;
  background: var(--bp-ink);
  color: var(--bp-accent);
  font-family: var(--bp-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.bp-staff-card h3 {
  margin: 0;
  font-family: var(--bp-display);
  font-size: 1.2rem;
}

.bp-staff-role {
  margin: 0.2rem 0 0;
  color: var(--bp-accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.bp-staff-bio {
  margin: 0.55rem 0 0;
  color: var(--bp-muted);
  font-size: 0.95rem;
}

.bp-staff-phone {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--bp-ink);
}

/* Contact */
.bp-contact-grid {
  display: grid;
  gap: 0.85rem;
}

.bp-contact-card {
  display: grid;
  gap: 0.3rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: var(--bp-sand);
  border: 1px solid var(--bp-line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.bp-contact-card:hover {
  border-color: var(--bp-accent-deep);
  transform: translateY(-2px);
}

.bp-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bp-accent-deep);
}

.bp-contact-card strong {
  font-family: var(--bp-display);
  font-size: 1.2rem;
  font-weight: 700;
  word-break: break-word;
}

/* Hours table */
.bp-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.bp-hours-table th,
.bp-hours-table td {
  text-align: left;
  padding: 0.95rem 0.35rem;
  border-bottom: 1px solid var(--bp-line);
}

.bp-hours-table th {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bp-muted);
}

.bp-hours-table td:last-child {
  font-weight: 700;
  text-align: right;
}

/* FAQ */
.bp-faq {
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
  margin: 0 auto;
}

.bp-faq details {
  border: 1px solid var(--bp-line);
  border-radius: 0.9rem;
  background: var(--bp-white);
  padding: 0.35rem 1rem;
}

.bp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.bp-faq summary::-webkit-details-marker { display: none; }

.bp-faq details[open] summary {
  border-bottom: 1px solid var(--bp-line);
}

.bp-faq p {
  margin: 0.85rem 0 1rem;
  color: var(--bp-muted);
}

/* Map */
.bp-map {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--bp-line);
  background: var(--bp-sand-deep);
  aspect-ratio: 16 / 10;
}

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

.bp-map-fallback {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border: 1px dashed var(--bp-line);
  border-radius: 1rem;
  color: var(--bp-muted);
}

/* Footer */
.bp-footer {
  background: var(--bp-ink);
  color: rgba(247, 248, 251, 0.82);
  padding: 3.5rem 1.25rem 1.5rem;
}

.bp-brand-footer { color: #fff; display: inline-block; margin-bottom: 0.75rem; }

.bp-footer-lede {
  margin: 0;
  max-width: 22rem;
  color: rgba(247, 248, 251, 0.65);
}

.bp-footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.bp-footer h4 {
  margin: 0 0 0.85rem;
  font-family: var(--bp-display);
  font-size: 1.05rem;
  color: #fff;
}

.bp-footer p { margin: 0 0 0.35rem; }
.bp-footer a:hover { color: var(--bp-accent); }

.bp-footer-links {
  display: grid;
  gap: 0.45rem;
}

.bp-hours-mini li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(247, 248, 251, 0.1);
  font-size: 0.92rem;
}

.bp-footer-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--bp-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.bp-footer-copy {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(247, 248, 251, 0.12);
  font-size: 0.85rem;
  color: rgba(247, 248, 251, 0.5);
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes bp-rise {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: none; }
}

@keyframes bp-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bp-hero-media,
  .bp-hero-inner,
  [data-reveal],
  .bp-gallery img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Breakpoints */
@media (min-width: 640px) {
  .bp-gallery { grid-template-columns: repeat(2, 1fr); }
  .bp-review-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-service-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .bp-nav-desktop { display: flex; }
  .bp-nav-toggle { display: none; }
  .bp-nav-mobile,
  .bp-nav.is-open .bp-nav-mobile { display: none !important; }

  .bp-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .bp-staff-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .bp-section { padding: 6rem 1.5rem; }
  .bp-gallery { grid-template-columns: repeat(3, 1fr); }
  .bp-review-grid { grid-template-columns: repeat(3, 1fr); }
  .bp-contact-grid { grid-template-columns: repeat(3, 1fr); }
  .bp-service-cards { grid-template-columns: repeat(3, 1fr); }
}
