/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@400;500;600&display=swap');

/* ─── Tokens ─── */
:root {
  --bg:              oklch(8% 0.03 255);
  --surface:         oklch(13% 0.04 253);
  --surface-raised:  oklch(18% 0.045 250);
  --accent:          oklch(68% 0.2 210);
  --accent-dim:      oklch(54% 0.16 210);
  --text-primary:    oklch(93% 0.008 225);
  --text-secondary:  oklch(61% 0.015 220);
  --text-muted:      oklch(40% 0.01 215);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-hero:    clamp(3.5rem, 6vw + 1rem, 7rem);
  --text-h1:      clamp(2rem, 3vw + 0.5rem, 3.5rem);
  --text-h2:      clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
  --text-h3:      clamp(1.1rem, 1vw + 0.5rem, 1.4rem);
  --text-body:    clamp(0.9375rem, 0.5vw + 0.75rem, 1rem);
  --text-small:   0.8125rem;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --dur-fast:   150ms;
  --dur-normal: 300ms;
  --dur-slow:   500ms;
  --ease-out:   cubic-bezier(0.25, 1, 0.5, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; outline-offset: 2px; }
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Typography ─── */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: var(--bg);
}
.btn-accent:hover {
  background: var(--accent-dim);
  box-shadow: 0 8px 24px oklch(68% 0.2 210 / 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid oklch(40% 0.01 215);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
}

/* ─── Navbar ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-normal), box-shadow var(--dur-normal);
}
.nav.scrolled {
  background: var(--surface);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem var(--space-md);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-logo-words { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: var(--space-md);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { margin-left: var(--space-sm); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--dur-normal), opacity var(--dur-normal);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  padding: var(--space-md);
}
.nav-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.nav-mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--surface-raised);
}
.nav-mobile-menu a:hover { color: var(--accent); }
.nav-mobile-menu .btn { margin-top: var(--space-sm); width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu.open { display: flex; }
}

.nav-links a:focus-visible,
.footer-col a:focus-visible,
.footer-socials a:focus-visible,
.footer-bottom a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ─── Footer ─── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--surface-raised);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
}
.footer-brand .nav-logo-img { width: 52px; height: 52px; }
.footer-brand .nav-logo-main { font-size: 1.8rem; }
.footer-brand p {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  max-width: 28ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: var(--text-secondary);
  font-size: var(--text-small);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--accent); }
.footer-socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--surface-raised);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: var(--space-md) auto 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--surface-raised);
  font-size: var(--text-small);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ─── Scroll animations ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="100"] { transition-delay: 100ms; }
[data-animate][data-delay="200"] { transition-delay: 200ms; }
[data-animate][data-delay="300"] { transition-delay: 300ms; }
[data-animate][data-delay="400"] { transition-delay: 400ms; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-logo-mark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(62vw, 620px);
  aspect-ratio: 1;
  background: url('assets/logo.jpg') center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
@media (max-width: 768px) {
  .hero-logo-mark { width: 88vw; right: -10%; opacity: 0.035; }
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: oklch(11% 0.035 255);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(8% 0.03 255 / 0.92) 40%,
    oklch(8% 0.03 255 / 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(5rem + 80px) var(--space-md) var(--space-xl);
  max-width: 700px;
  width: 100%;
  padding-left: clamp(1.5rem, 8vw, 8rem);
}
.hero-heading {
  font-size: var(--text-hero);
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
}
.hero-heading em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 48ch;
  margin-bottom: var(--space-md);
}
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollHint 1.5s ease-out infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── Tagline strip ─── */
.tagline-strip {
  border-top: 1px solid var(--surface-raised);
  border-bottom: 1px solid var(--surface-raised);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}
.tagline-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ─── Section shared ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.section-header { margin-bottom: var(--space-lg); }
.section-header h2 { font-size: var(--text-h1); margin-top: var(--space-xs); }
.section-header h2 em { color: var(--accent); font-style: italic; }

/* ─── Services teaser ─── */
.services-teaser { background: var(--bg); }
.service-rows { display: flex; flex-direction: column; gap: var(--space-lg); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.service-row-reverse { direction: rtl; }
.service-row-reverse > * { direction: ltr; }
.service-row-text {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.service-price-block {
  flex-shrink: 0;
  line-height: 1;
  min-width: 5rem;
}
.service-price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.service-price-qualifier {
  display: block;
  font-size: var(--text-small);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.service-row-text h3 { font-size: var(--text-h2); margin-bottom: var(--space-xs); }
.service-row-text p { color: var(--text-secondary); line-height: 1.7; }
.service-row-text strong { color: var(--accent); }
.service-row-img .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  border: 1px solid var(--surface-raised);
}
.text-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.text-link:hover { color: var(--text-primary); border-color: var(--text-muted); }
.services-teaser-cta { margin-top: var(--space-lg); }
@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row-reverse { direction: ltr; }
}

/* ─── Process section ─── */
.process-section { background: var(--surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.process-step {
  padding-top: var(--space-md);
  border-top: 1px solid var(--surface-raised);
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 300;
  color: var(--surface-raised);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  user-select: none;
}
.process-step h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--space-xs);
}
.process-step p { color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* ─── Before/After slider ─── */
.ba-section { background: var(--surface); }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--surface-raised);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-after { clip-path: inset(0 0 0 50%); transition: none; }
.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  background: var(--bg);
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: oklch(0% 0 0 / 0.6);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}
.ba-label-before { left: 1rem; }
.ba-label-after  { right: 1rem; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.ba-handle-line {
  flex: 1;
  width: 1.5px;
  background: oklch(100% 0 0 / 0.7);
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 4px 16px oklch(0% 0 0 / 0.4);
}

/* ─── Reviews carousel ─── */
.reviews-section { background: var(--bg); }
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.carousel-track-wrap { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-slide {
  min-width: 100%;
  padding: var(--space-md) var(--space-lg);
}
.carousel-slide blockquote {
  max-width: 52ch;
  margin: 0 auto;
  text-align: center;
}
.carousel-stars {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-bottom: var(--space-sm);
}
.carousel-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  quotes: "\201C" "\201D";
}
.carousel-quote::before { content: open-quote; color: var(--accent); }
.carousel-quote::after  { content: close-quote; color: var(--accent); }
.carousel-author {
  font-size: var(--text-small);
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.carousel-progress {
  width: 100%;
  height: 2px;
  background: var(--surface-raised);
  border-radius: 1px;
  margin-top: var(--space-md);
  overflow: hidden;
}
.carousel-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--surface-raised);
  background: var(--surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.carousel-btn:hover, .carousel-btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--surface-raised);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--surface-raised);
  transition: background var(--dur-fast) var(--ease-out),
              width var(--dur-normal) var(--ease-out),
              border-radius var(--dur-normal) var(--ease-out);
}
.carousel-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 3px;
}
.reviews-note { text-align: center; margin-top: var(--space-lg); }
@media (max-width: 640px) {
  .carousel-slide { padding: var(--space-md) var(--space-xs); }
  .carousel-btn { width: 36px; height: 36px; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--surface-raised);
}
.cta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.cta-banner-left .eyebrow { margin-bottom: var(--space-xs); }
.cta-phone-large {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
  transition: color var(--dur-fast) var(--ease-out);
}
.cta-phone-large:hover { color: var(--accent); }
.cta-hours {
  font-size: var(--text-small);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── Footer ─── */
.footer-col-h4-spaced { margin-top: 1rem; }

/* ─── Page header (shared across all inner pages) ─── */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--surface-raised);
  padding-top: 120px;
  padding-bottom: var(--space-lg);
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.page-header-inner h1 {
  font-size: var(--text-hero);
  margin: var(--space-sm) 0;
}
.page-header-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
}

/* ─── Packages ─── */
.packages-section { background: var(--bg); }
.package-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--surface-raised);
}
.package-block:last-child { border-bottom: none; }
.package-block-reverse { direction: rtl; }
.package-block-reverse > * { direction: ltr; }
.package-text { display: flex; gap: var(--space-md); align-items: flex-start; }
.package-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--surface-raised);
  line-height: 1;
  flex-shrink: 0;
}
.package-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
.package-header h2 { font-size: var(--text-h2); }
.package-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.package-text > div > p { color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-sm); }
.package-includes {
  list-style: none;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.package-includes li {
  font-size: var(--text-small);
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.package-img .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  border: 1px solid var(--surface-raised);
}
@media (max-width: 768px) {
  .package-block { grid-template-columns: 1fr; gap: var(--space-md); }
  .package-block-reverse { direction: ltr; }
}

/* ─── Add-ons ─── */
.addons-section { background: var(--surface); }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--space-md);
  background: var(--surface-raised);
  border-radius: var(--radius-sm);
  border: 1px solid oklch(25% 0.04 252);
}
.addon-name { font-weight: 500; }
.addon-price { color: var(--accent); font-weight: 600; }
@media (max-width: 640px) {
  .addons-grid { grid-template-columns: 1fr; }
}

/* ─── Utility ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── Gallery ─── */
.gallery-section { background: var(--bg); }
.gallery-filters {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  border: 1px solid var(--surface-raised);
  background: transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--text-muted); }
.filter-btn.active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.filter-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.gallery-item { cursor: pointer; }
.gallery-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--surface-raised);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: oklch(8% 0.03 255 / 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-normal);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.gallery-caption {
  margin-top: 0.5rem;
  font-size: var(--text-small);
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── Lightbox ─── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(4% 0.005 60 / 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
#lightbox[hidden] { display: none; }
#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-primary);
  line-height: 1;
  padding: 0.5rem;
  transition: color var(--dur-fast);
}
#lightbox-close:hover { color: var(--accent); }
#lightbox-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* ─── Booking page ─── */
.booking-section { background: var(--bg); }
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.booking-info h2 {
  font-size: var(--text-h2);
  margin-bottom: var(--space-md);
}
.booking-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}
.booking-checklist li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}
.booking-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.booking-contact { margin-bottom: var(--space-lg); }
.booking-contact p { color: var(--text-secondary); margin-bottom: var(--space-sm); }
.booking-hours h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--space-sm);
}
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td {
  padding: 0.375rem 0;
  font-size: var(--text-small);
  color: var(--text-secondary);
}
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.booking-call {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-raised);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  align-items: flex-start;
}
.booking-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin: var(--space-xs) 0 var(--space-md);
  transition: color var(--dur-fast) var(--ease-out);
}
.booking-phone:hover { color: var(--accent); }
.booking-call-note {
  color: var(--text-secondary);
  max-width: 36ch;
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.booking-hours-compact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-lg);
}
.booking-hours-compact li {
  font-size: var(--text-small);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  max-width: 28ch;
}
@media (max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; }
  .booking-call { padding: var(--space-md); }
}
@media (max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; }
}

/* ─── About page ─── */
.about-section { background: var(--bg); }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}
.about-text h2 { font-size: var(--text-h1); margin-bottom: var(--space-md); }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-sm); }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  border: 1px solid var(--surface-raised);
}
.values-section { background: var(--surface); }
.values-list {
  display: flex;
  flex-direction: column;
}
.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--surface-raised);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--surface-raised);
  line-height: 1;
  flex-shrink: 0;
  width: 4rem;
}
.value-item h3 { font-size: var(--text-h3); margin-bottom: var(--space-xs); }
.value-item p { color: var(--text-secondary); }
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ─── Contact page ─── */
.contact-section { background: var(--bg); }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-block { margin-bottom: var(--space-lg); }
.contact-label {
  font-size: var(--text-small);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  transition: color var(--dur-fast);
}
.contact-phone:hover { color: var(--text-primary); }
.contact-phone:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.map-placeholder {
  margin-top: var(--space-sm);
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  border: 1px solid var(--surface-raised);
}
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-raised);
  padding: var(--space-lg);
}
.contact-form-wrap h2 { font-size: var(--text-h2); margin-bottom: var(--space-md); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-row { display: flex; flex-direction: column; gap: 0.375rem; }
.form-row label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--surface-raised);
  border: 1px solid oklch(25% 0.04 252);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 0.75rem 1rem;
  transition: border-color var(--dur-fast);
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-muted); }
.form-row select option { background: var(--surface-raised); }
.form-row textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: var(--space-xs); align-self: flex-start; }
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}
