:root {
  color-scheme: light;
  --bg: oklch(98.5% 0.012 88);
  --bg-soft: oklch(94.5% 0.024 84);
  --surface: oklch(100% 0 0);
  --surface-soft: oklch(96% 0.018 84);
  --ink: oklch(21% 0.018 74);
  --ink-soft: oklch(31% 0.018 74);
  --muted: oklch(43% 0.017 74);
  --line: oklch(80% 0.024 78);
  --line-soft: oklch(88% 0.018 82);
  --gold: oklch(54% 0.06 76);
  --gold-soft: oklch(90% 0.044 82);
  --gold-pale: oklch(97% 0.024 86);
  --black: oklch(24% 0.018 74);
  --radius: 12px;
  --shadow: 0 12px 28px oklch(18% 0.018 82 / 0.10);
  --image-shadow: 0 20px 48px oklch(18% 0.018 82 / 0.18);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
.btn {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.top-alert {
  background: var(--gold-pale);
  color: var(--ink);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 750;
  padding: 0.58rem 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid color-mix(in oklch, var(--gold) 36%, var(--line-soft));
}

.footer-brand .brand-logo {
  width: 52px;
  height: 52px;
}

.main-nav ul,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a,
.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 780;
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.76rem 1.15rem;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--gold-soft);
  color: var(--ink);
  border: 1px solid color-mix(in oklch, var(--gold) 46%, var(--line));
}

.btn-primary:hover {
  background: color-mix(in oklch, var(--gold-soft) 70%, var(--surface));
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: color-mix(in oklch, var(--gold) 48%, var(--line));
  color: var(--black);
}

.hero {
  min-height: min(760px, calc(100dvh - 108px));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.05rem;
  align-content: center;
}

.hero-kicker {
  width: fit-content;
  margin: 0;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1,
.section-stack h2,
.about-copy h2,
.hours-copy h2,
.booking-panel h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 7ch;
}

.hero-text {
  margin: 0;
  max-width: 32rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  text-wrap: pretty;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.hero-details {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.hero-details span {
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid color-mix(in oklch, var(--gold) 36%, var(--line));
}

.hero-media,
.about-media,
.hours-media {
  margin: 0;
  display: grid;
  place-items: center;
}

.hero-media img,
.about-media img,
.hours-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(360px, 52vw, 590px);
  border-radius: var(--radius);
  box-shadow: var(--image-shadow);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-stack {
  display: grid;
  gap: 0.7rem;
  max-width: 46rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section-stack h2,
.about-copy h2,
.hours-copy h2,
.booking-panel h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-stack p,
.about-copy p,
.hours-copy p,
.booking-panel p,
.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
  text-wrap: pretty;
}

.about-section,
.services-section,
.contact-section {
  background: color-mix(in oklch, var(--surface) 70%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-media img {
  max-height: clamp(340px, 46vw, 560px);
}

.about-copy {
  display: grid;
  gap: 1.25rem;
}

.quick-facts {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.quick-facts div,
.finish-tile,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.quick-facts div {
  padding: 1rem;
}

.quick-facts span,
.finish-tile span,
.contact-card span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.quick-facts strong,
.finish-tile strong {
  color: var(--ink);
  font-size: 1rem;
}

.finish-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--surface), var(--gold-pale));
  border-block: 1px solid var(--line-soft);
}

.finish-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.finish-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--image-shadow);
}

.finish-media img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  height: auto;
  object-fit: cover;
  object-position: center 34%;
}

.finish-copy {
  display: grid;
  gap: 1.25rem;
}

.finish-copy .section-stack {
  margin-bottom: 0;
}

.service-category summary h3,
.gallery-card h3 {
  margin: 0;
}

.finish-options {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.finish-tile {
  min-height: auto;
  display: grid;
  align-content: center;
  padding: 1rem;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease;
}

.finish-tile:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklch, var(--gold) 46%, var(--line));
}

.finish-tile strong {
  line-height: 1.42;
}

.accent-tile {
  background: var(--gold-pale);
  border-color: color-mix(in oklch, var(--gold) 42%, var(--line));
}

.accent-tile span,
.accent-tile strong {
  color: var(--ink);
}

.service-categories {
  display: grid;
  gap: 0.75rem;
}

.service-category {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease;
}

.service-category[open] {
  border-color: color-mix(in oklch, var(--gold) 42%, var(--line));
}

.service-category summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8.5rem 34px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  list-style: none;
  transition: background 180ms ease;
}

.service-category summary:hover {
  background: var(--gold-pale);
}

.service-category summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--black);
  font-weight: 900;
}

.service-category[open] summary::after {
  content: "-";
}

.service-category summary::-webkit-details-marker {
  display: none;
}

.service-category summary h3 {
  font-size: 1.05rem;
}

.service-category summary span {
  color: var(--muted);
  font-weight: 820;
  justify-self: center;
  white-space: nowrap;
}

.service-items {
  display: grid;
  padding: 0 1.15rem 1.15rem;
  gap: 0.55rem;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.78rem 0;
  border-top: 1px solid var(--line-soft);
}

.service-meta {
  display: grid;
  gap: 0.15rem;
}

.service-meta strong,
.service-cost strong {
  color: var(--ink);
}

.service-meta span,
.service-cost span {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-cost {
  display: grid;
  justify-items: end;
  min-width: 5.5rem;
}

.service-row,
.service-row.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(4.5rem, auto) minmax(4.5rem, auto);
  gap: 0.75rem;
  align-items: center;
}

.service-row-header {
  padding: 0.25rem 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-row strong {
  color: var(--ink);
  min-width: 0;
}

.service-row span {
  color: var(--ink);
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.service-row-header span {
  color: var(--gold);
}

.service-row-header span:first-child {
  text-align: left;
}

.service-note {
  margin: 0.45rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 850;
}

.gallery-section {
  background: var(--bg);
}

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

.gallery-card {
  width: 100%;
  display: grid;
  align-content: start;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px oklch(18% 0.018 82 / 0.10);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease;
}

.gallery-card:hover img {
  transform: translateY(-4px);
  box-shadow: var(--image-shadow);
}

.gallery-card h3 {
  font-size: 0.96rem;
  margin-top: 0.68rem;
  transition: color 180ms ease;
}

.gallery-card:hover h3 {
  color: var(--gold);
}

.gallery-card p {
  margin: 0.12rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hours-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.hours-copy {
  display: grid;
  gap: 1rem;
}

.hours-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  color: var(--ink);
  text-align: right;
}

.hours-media img {
  max-height: clamp(320px, 44vw, 540px);
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.booking-panel h2,
.booking-panel p {
  color: var(--ink);
}

.booking-panel p {
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.contact-card a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.contact-card address {
  font-style: normal;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--surface), var(--gold-pale));
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
}

.site-footer .brand,
.site-footer a {
  color: var(--ink);
}

.site-footer .footer-nav a,
.site-footer .footer-grid p,
.site-footer .footer-bottom p {
  color: var(--muted);
}

.site-footer .footer-nav a:hover {
  color: var(--gold);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: start;
}

.footer-grid p {
  margin: 0.4rem 0 0;
}

.footer-grid a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.scroll-top,
.phone-float {
  position: fixed;
  right: 1rem;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--ink);
  border: 1px solid color-mix(in oklch, var(--gold) 42%, var(--line));
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 19;
}

.scroll-top.visible,
.phone-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top {
  bottom: 1rem;
}

.phone-float {
  bottom: 4.8rem;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: oklch(98% 0.004 92 / 0.92);
  backdrop-filter: blur(14px);
  z-index: 40;
}

.gallery-modal.open {
  display: grid;
}

.gallery-modal img {
  max-width: min(920px, 100%);
  max-height: 78dvh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px oklch(18% 0.018 82 / 0.22);
}

.gallery-modal p {
  margin: 0.9rem 0 0;
  color: var(--ink);
  text-align: center;
  font-weight: 850;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-media,
  .section-stack,
  .finish-grid,
  .about-grid,
  .hours-grid,
  .contact-grid {
    animation: lift-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-media {
    animation-delay: 100ms;
  }

  @keyframes lift-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .header-call {
    display: none;
  }

  .main-nav ul {
    gap: 0.8rem;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 7.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    z-index: 1000;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    width: 100%;
    padding: 0.65rem;
    display: grid;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    color: var(--ink);
  }

  .main-nav a:hover {
    background: var(--gold-pale);
  }

  .hero {
    min-height: auto;
    padding: 3.2rem 0;
  }

  .hero-grid,
  .about-grid,
  .finish-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .finish-media {
    max-width: 420px;
  }

  .finish-tile {
    min-height: auto;
  }

  .hours-list {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, var(--container));
    max-width: calc(100% - 1rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-details span {
    width: 100%;
  }

  .finish-media {
    max-width: 100%;
  }

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

  .gallery-card {
    margin-bottom: 0;
  }

  .service-category summary {
    grid-template-columns: minmax(0, 1fr) auto 32px;
    gap: 0.55rem;
    padding: 0.95rem;
  }

  .service-category summary span {
    justify-self: end;
    font-size: 0.86rem;
  }

  .service-item:not(.service-row) {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .service-row,
  .service-row.service-item,
  .service-row-header {
    grid-template-columns: minmax(0, 1fr) 3.7rem 3.7rem;
    gap: 0.5rem;
  }

  .service-row strong {
    font-size: 0.95rem;
  }

  .service-cost {
    justify-items: end;
    min-width: auto;
  }

  .service-items {
    padding: 0 0.95rem 0.95rem;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}
