:root {
  color-scheme: light;
  --background: #ffffff;
  --foreground: #171717;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --primary: #262626;
  --primary-foreground: #fafafa;
  --secondary: #f5f5f5;
  --secondary-foreground: #262626;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.stars svg {
  fill: currentColor;
  stroke: currentColor;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.section {
  scroll-margin-top: 4rem;
  padding-block: 4rem;
}

.section-border {
  border-bottom: 1px solid var(--border);
}

.muted {
  background: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, 72rem);
  height: 4rem;
  margin-inline: auto;
}

.brand img {
  width: auto;
  height: 2.75rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a,
.mobile-nav a,
.site-footer nav a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer nav a:hover {
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.5rem 0.625rem;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
}

.btn:hover {
  background: #525252;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  min-height: 2.25rem;
}

.btn-outline {
  border-color: var(--border);
  background: var(--background);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: #e5e5e5;
}

.desktop-booking {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--muted);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.site-header.is-open .menu-icon {
  background: transparent;
}

.site-header.is-open .menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
}

.site-header.is-open .mobile-nav {
  display: block;
}

.mobile-nav a {
  display: block;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.mobile-nav a:hover {
  background: var(--muted);
}

.mobile-booking {
  width: 100%;
  margin-top: 1rem;
  color: var(--primary-foreground) !important;
}

.hero {
  scroll-margin-top: 4rem;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 0.875rem;
  height: 0.875rem;
}

h1,
h2,
h3,
p,
dl,
figure,
blockquote,
ul {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 span,
.lead,
.section-heading p,
.about-grid p,
.service-card p,
.team-card p,
.testimonial-grid blockquote,
.contact-info p,
.footer-brand p,
.copyright {
  color: var(--muted-foreground);
}

.lead {
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.65;
}

.rating-row,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-row p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.rating-row strong {
  color: var(--foreground);
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.inline-stats dt,
.stat-cards dt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.inline-stats dd,
.stat-cards dd {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0;
}

.inline-stats span,
.stat-cards span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hero-media {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.hero-image img,
.gallery-grid img,
.team-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.status-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--background);
}

.status-card strong,
.status-card small {
  display: block;
}

.status-card small {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-grid > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.about-grid p {
  line-height: 1.7;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-cards > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  padding: 1.5rem;
  text-align: center;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p {
  margin-top: 0.75rem;
  line-height: 1.7;
}

.service-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  padding: 1.5rem;
  transition: background-color 180ms ease;
}

.service-card:hover {
  background: var(--muted);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.service-card h3,
.team-card h3,
.price-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.service-card span:not(.icon-box) {
  color: var(--muted-foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  white-space: nowrap;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.gallery-grid img {
  transition: transform 300ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
}

.team-card > img {
  aspect-ratio: 4 / 5;
}

.team-card div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
}

.team-card p {
  font-size: 0.875rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  padding: 2rem;
}

.price-card.featured {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.price-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-card > div > span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
}

.price-card p {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.price-card li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: currentColor;
  clip-path: polygon(14% 52%, 35% 73%, 86% 21%, 96% 31%, 35% 92%, 4% 61%);
  opacity: 0.75;
}

.price-card .btn {
  margin-top: auto;
}

.testimonial-grid figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--muted);
  padding: 1.5rem;
}

.testimonial-grid blockquote {
  line-height: 1.7;
}

.testimonial-grid figcaption {
  margin-top: auto;
  font-weight: 600;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  border-radius: 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  color: var(--muted-foreground);
  flex: 0 0 auto;
  margin-top: 0.125rem;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info p {
  font-size: 0.875rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--background);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  transition: background-color 180ms ease;
}

.social-row a:hover {
  background: var(--muted);
}

.map-wrap {
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-brand img {
  width: auto;
  height: 4rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background-color 180ms ease;
}

.footer-social a:hover {
  background: var(--muted);
}

.copyright {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
}

@media (max-width: 520px) {
  .hero-actions,
  .rating-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .inline-stats,
  .stat-cards {
    gap: 0.5rem;
  }

  .stat-cards > div {
    padding: 1rem 0.5rem;
  }

  .inline-stats span,
  .stat-cards span {
    font-size: 0.75rem;
  }

  .status-card {
    left: 0.75rem;
    right: 0.75rem;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 3rem, 72rem);
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 6rem;
  }

  .desktop-nav,
  .desktop-booking {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    padding-block: 6rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
