:root {
  --bg: oklch(97% 0.01 80);
  --text: oklch(24% 0.02 70);
  --text-soft: oklch(38% 0.02 70);
  --text-softer: oklch(42% 0.02 70);
  --header-bg: oklch(20% 0.015 70);
  --header-border: oklch(30% 0.02 70);
  --header-text: oklch(92% 0.01 80);
  --header-text-strong: oklch(98% 0.01 80);
  --footer-bg: oklch(15% 0.015 70);
  --footer-text: oklch(65% 0.01 80);
  --footer-text-strong: oklch(90% 0.01 80);
  --dark-strip-bg: oklch(20% 0.015 70);
  --dark-strip-text: oklch(94% 0.01 80);
  --dark-strip-text-soft: oklch(85% 0.01 80);
  --heading: oklch(20% 0.02 70);
  --card-bg: oklch(99% 0.005 80);
  --card-border: oklch(90% 0.01 80);
  --sidebar-bg: oklch(93% 0.03 150);
  --accent: oklch(75% 0.09 150);
  --accent-dark: oklch(50% 0.09 150);
  --font-serif: 'Bodoni Moda', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 72px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
}

a { color: var(--accent-dark); text-decoration: none; }
::selection { background: oklch(90% 0.05 150); }

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

button { font-family: inherit; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  background: var(--header-bg);
  box-shadow: 0 1px 0 var(--header-border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo { height: 40px; width: auto; }

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--header-text-strong);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a:not(.btn) {
  color: var(--header-text);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).active {
  color: oklch(75% 0.09 150);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--header-text-strong);
  display: block;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-accent {
  background: var(--accent);
  color: oklch(15% 0.02 70);
}
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-dark {
  background: var(--accent-dark);
  color: oklch(98% 0.01 80);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 20px oklch(20% 0.02 70 / 0.25); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: oklch(98% 0.01 80); }

.nav-cta { padding: 10px 20px; font-size: 14px; }

/* ---------- Layout helpers ---------- */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 64px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  color: var(--heading);
}

.link-more {
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.link-more:hover { opacity: 0.6; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 64px;
  min-height: 0;
  overflow: hidden;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.08;
  margin: 0;
  font-weight: 500;
  color: var(--heading);
}

.hero-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 460px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: linear-gradient(155deg, oklch(90% 0.03 70), oklch(88% 0.05 150) 60%, oklch(92% 0.04 80));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Cards / grids ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  cursor: pointer;
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px oklch(20% 0.02 70 / 0.15);
}

.service-card .thumb { height: 200px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.service-card .body { padding: 24px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--heading);
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-softer);
  margin: 0;
}

/* services list page variant */
.card-grid.services-list .service-card .thumb { height: 220px; }
.card-grid.services-list .service-card .body { padding: 28px; }
.card-grid.services-list .service-card h3 { font-size: 24px; margin-bottom: 10px; }
.card-grid.services-list .service-card p { margin-bottom: 16px; }
.services-list .cta-arrow { font-size: 14px; font-weight: 700; }

/* ---------- Gallery preview on home ---------- */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-tile {
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  display: block;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-tile:hover img { transform: scale(1.08); }

.seo-intro {
  max-width: 760px;
  margin: 40px auto 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
}
.seo-intro strong { color: var(--heading); }
.seo-intro a { font-weight: 600; }

/* ---------- Contact strip (home) ---------- */

.contact-strip {
  background: var(--dark-strip-bg);
  color: var(--dark-strip-text);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-strip h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.contact-strip .addr {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-strip-text-soft);
  margin: 0 0 24px 0;
}

.contact-strip .email-link,
.contact-strip .fb-link {
  color: var(--dark-strip-text-soft);
  font-size: 14px;
  transition: color 0.2s ease;
}
.contact-strip .email-link:hover,
.contact-strip .fb-link:hover { color: oklch(75% 0.09 150); }

.contact-strip h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  margin: 32px 0 16px 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 24px;
  font-size: 14.5px;
  color: var(--dark-strip-text-soft);
}

.hours-note {
  font-size: 13px;
  color: oklch(70% 0.01 80);
  margin-top: 16px;
}

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  min-height: 340px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ---------- Services list / detail ---------- */

.page-head {
  padding: 72px 64px 0 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.page-head h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 48px 0;
  color: var(--heading);
}

.services-list-wrap { padding: 0 64px 96px 64px; max-width: 1280px; margin: 0 auto; }

.service-detail-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.service-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(15% 0.02 70 / 0.75), oklch(15% 0.02 70 / 0.15));
}
.service-detail-hero .hero-caption {
  position: absolute;
  left: 64px;
  bottom: 32px;
  color: oklch(98% 0.01 80);
  max-width: 700px;
}
.service-detail-hero .back-link {
  color: oklch(90% 0.01 80);
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.service-detail-hero .back-link:hover { opacity: 0.65; }
.service-detail-hero h1 {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 500;
  margin: 8px 0 0 0;
  color: inherit;
}

.service-detail-body {
  padding: 56px 64px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
}

.service-detail-body .description {
  font-size: 16.5px;
  line-height: 1.75;
  color: oklch(32% 0.02 70);
  margin: 0 0 18px 0;
}
.service-detail-body .description:last-of-type {
  margin-bottom: 32px;
}

.service-gallery {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 32px 0;
}
.service-gallery .gallery-tile {
  width: 130px;
  height: 130px;
  flex: 0 0 auto;
}

.service-video {
  margin: 0 0 32px 0;
}
.service-video video {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 6px;
  background: oklch(15% 0.02 70);
  box-shadow: 0 4px 16px oklch(20% 0.02 70 / 0.18);
}

.service-detail-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px 0;
  color: var(--heading);
}

.treatment-row {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--card-border);
}
.treatment-row .name { font-size: 15.5px; color: oklch(28% 0.02 70); font-weight: 500; }

.booking-box {
  background: var(--sidebar-bg);
  border-radius: 6px;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 96px;
}
.booking-box h3 { margin-top: 0; }
.booking-box p {
  font-size: 14px;
  line-height: 1.6;
  color: oklch(30% 0.02 70);
  margin: 0 0 24px 0;
}
.booking-box .btn { display: block; width: 100%; text-align: center; padding: 16px; font-size: 16px; margin-bottom: 16px; }
.booking-box .hours {
  font-size: 13px;
  color: oklch(35% 0.02 70);
  line-height: 1.7;
}

/* ---------- Gallery page ---------- */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: oklch(10% 0.01 70 / 0.9);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(20% 0.015 70 / 0.6);
  color: oklch(98% 0.01 80);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: oklch(20% 0.015 70 / 0.85);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; }
}

/* ---------- Contact page ---------- */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-page-grid h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: var(--heading);
}
.contact-page-grid .addr {
  font-size: 15px;
  line-height: 1.8;
  color: oklch(35% 0.02 70);
  margin: 0 0 24px 0;
}
.contact-page-grid .btn { margin-bottom: 24px; }
.contact-page-grid .links a { display: block; font-size: 14.5px; margin-bottom: 8px; }
.contact-page-grid h3.hours-title {
  font-size: 20px;
  margin: 32px 0 16px 0;
}
.contact-page-grid .hours-grid { color: oklch(35% 0.02 70); }
.contact-page-grid .hours-note { color: oklch(50% 0.02 70); margin-top: 12px; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 32px 64px;
  background: var(--footer-bg);
  color: var(--footer-text);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--footer-text); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--footer-text-strong); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .site-header { padding: 0 20px; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 20px 20px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { width: 100%; padding: 10px 0; }
  .nav-cta { margin-top: 8px; }

  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .hero-copy { padding: 56px 24px; }
  .hero-copy h1 { font-size: 38px; }
  .hero-media { height: 60vw; min-height: 260px; }

  .wrap { padding: 56px 24px; }
  .page-head { padding: 48px 24px 0 24px; }
  .services-list-wrap { padding: 0 24px 56px 24px; }

  .contact-strip { grid-template-columns: 1fr; padding: 48px 24px; }
  .service-detail-body { grid-template-columns: 1fr; padding: 40px 24px; }
  .service-detail-hero .hero-caption { left: 24px; right: 24px; }
  .service-detail-hero h1 { font-size: 32px; }

  .contact-page-grid { grid-template-columns: 1fr; }

  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }

  .site-footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .brand-name { font-size: 18px; }
}
