:root {
  --black: #050505;
  --night: #0d0d0d;
  --panel: #151515;
  --panel-soft: rgba(255, 255, 255, 0.035);
  --ink: #ffffff;
  --muted: rgba(224, 224, 224, 0.82);
  --dim: rgba(224, 224, 224, 0.58);
  --gold: #8c16e8;
  --gold-soft: rgba(140, 22, 232, 0.42);
  --violet: #8c16e8;
  --magenta: #cc3366;
  --line: rgba(140, 22, 232, 0.42);
  --line-soft: rgba(255, 255, 255, 0.12);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 126px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 76% 14%, rgba(140, 22, 232, 0.18), transparent 34rem),
    radial-gradient(ellipse at 16% 12%, rgba(204, 51, 102, 0.1), transparent 30rem),
    linear-gradient(180deg, #111111, #050505 46%, #000000),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(140, 22, 232, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 132px 132px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

.top-strip {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto 0;
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 8px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #b042ff, #8c16e8 54%, #6200c8);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 34px 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 86px;
  padding: 0 clamp(18px, 4vw, 56px);
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  box-shadow: 0 0 28px rgba(140, 22, 232, 0.18);
}

.primary-nav {
  display: flex;
  gap: clamp(16px, 2.7vw, 30px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 10px 0;
  transition: color 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr) minmax(300px, 0.52fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  max-width: calc(var(--max) + 112px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 140px clamp(18px, 4vw, 56px) 36px;
}

.hero::before,
.bio::before,
.work::before,
.services::before,
.pricing::before,
.visit::before,
.book::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: url("assets/ls-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(260px, 38vw, 560px);
  opacity: 0.075;
  filter: saturate(1.05) contrast(1.18);
}

.hero::before {
  background-position: 28% 48%;
}

.bio::before,
.services::before,
.visit::before {
  background-position: 18% 50%;
}

.work::before,
.pricing::before,
.book::before {
  background-position: 78% 50%;
}

.hero > *,
.bio > *,
.work > *,
.services > *,
.pricing > *,
.visit > *,
.book > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  padding-top: 32px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.15vw, 6.7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5.4vw, 5.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  font-weight: 620;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #b042ff, #8c16e8 54%, #6200c8);
  box-shadow: 0 14px 38px rgba(140, 22, 232, 0.28);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button.ghost:hover {
  border-color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 84%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(1.04) contrast(1.1) brightness(1.04);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.62);
}

.hero-logo {
  position: absolute;
  top: 34px;
  left: 2%;
  z-index: 2;
  width: 58%;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.hero-enquiry {
  align-self: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(140, 22, 232, 0.16), transparent 42%),
    rgba(15, 15, 15, 0.88);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.hero-enquiry h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.mini-booking-form {
  display: grid;
  gap: 12px;
}

.mini-booking-form label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-booking-form textarea {
  min-height: 112px;
}

.mini-booking-form .button,
.mini-booking-form .form-status {
  width: 100%;
}

.hero-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(10px);
}

.hero-meta span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-meta span:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(72px, 12vw, 148px) clamp(18px, 4vw, 56px);
}

.bio,
.work,
.services,
.pricing,
.visit,
.book {
  position: relative;
  isolation: isolate;
  max-width: calc(var(--max) + 112px);
  margin: 0 auto;
}

.bio {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 0.82fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line-soft);
}

.bio-copy h2 {
  margin-bottom: 26px;
}

.bio-copy p {
  max-width: 760px;
}

.bio-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.07);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  margin-bottom: clamp(34px, 6vw, 68px);
}

.section-heading h2 {
  max-width: 880px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.work-item {
  position: relative;
  min-height: 370px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.work-item.large {
  grid-row: span 2;
  grid-column: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

.work-item img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.1) brightness(1.03);
  transition: transform 560ms var(--ease), filter 220ms ease;
}

.work-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  opacity: 0.66;
  pointer-events: none;
}

.work-item::after {
  content: attr(data-caption);
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 15px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0.84;
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.work-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.12) brightness(1.06);
}

.work-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.service-list {
  border-top: 1px solid var(--line);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.offer-grid article {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.88);
  overflow: hidden;
}

.offer-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08) brightness(1.02);
}

.offer-grid div {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 22px;
}

.offer-grid span {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-grid h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.offer-grid p {
  margin-bottom: 22px;
}

.offer-grid a {
  margin-top: auto;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-list article {
  display: grid;
  grid-template-columns: 90px minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  padding: clamp(24px, 4vw, 38px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 180ms ease;
}

.service-list article:hover {
  background: rgba(255, 255, 255, 0.018);
}

.service-list span,
.price-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-list p {
  margin-bottom: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-grid div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)), var(--night);
}

.price-grid strong {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.faq {
  border-top: 1px solid var(--line-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
}

.faq-tabs {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  background: rgba(8, 0, 14, 0.62);
}

.faq-tabs button {
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.faq-tabs button:last-child {
  border-bottom: 0;
}

.faq-tabs button.is-active,
.faq-tabs button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #b042ff, #8c16e8 54%, #6200c8);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(15, 15, 15, 0.42);
}

.faq-list details[hidden] {
  display: none;
}

.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 14px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 840px;
  margin: 0;
  padding: 0 56px 24px 0;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.7fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 6vw, 70px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(140, 22, 232, 0.16), transparent 46%),
    rgba(15, 15, 15, 0.88);
}

.faq-cta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.faq-cta p {
  margin: 0;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.visit-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(140, 22, 232, 0.14), transparent 44%),
    rgba(15, 15, 15, 0.88);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
}

.visit-card h2 {
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 1px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-list a {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(10, 10, 10, 0.96);
  transition: background 180ms ease, color 180ms ease;
}

.contact-list a:hover {
  background: rgba(140, 22, 232, 0.16);
}

.contact-list span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  min-width: 0;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.hours {
  border-top: 1px solid var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.hours span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours strong {
  font-weight: 760;
}

.small-note {
  margin: 24px 0 0;
  color: var(--dim);
}

.map-panel {
  display: grid;
  gap: 14px;
}

.map-panel iframe {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--line);
  filter: grayscale(1) invert(0.9) contrast(1.05) saturate(0.72);
  background: var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.map-link {
  justify-self: start;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 72px);
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(140, 22, 232, 0.16), transparent 42%),
    rgba(15, 15, 15, 0.88);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.book-panel h2 {
  margin-bottom: 24px;
}

.book-panel p {
  max-width: 560px;
}

.book-panel p a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
}

.consent-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  font-weight: 760;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form .full,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  outline: none;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

select option {
  color: #111111;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.form-status {
  margin: 0;
  color: var(--dim);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
}

.site-footer img {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 58px clamp(16px, 4vw, 58px) 34px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
}

.lightbox p {
  margin: 14px 0 0;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--black);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 106px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    padding: 16px 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .bio,
  .section-heading,
  .faq-layout,
  .faq-cta,
  .visit,
  .book-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
    max-width: 520px;
  }

  .hero-logo,
  .hero-photo {
    position: static;
    width: 100%;
  }

  .hero-logo {
    max-width: 360px;
  }

  .hero-photo {
    order: -1;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-meta,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .brand span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 130px 16px 26px;
  }

  .top-strip {
    min-height: 34px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero::before,
  .bio::before,
  .work::before,
  .services::before,
  .pricing::before,
  .visit::before,
  .book::before {
    background-size: 290px;
    background-position: center 42%;
    opacity: 0.06;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    max-width: none;
  }

  .hero-logo {
    justify-self: center;
    max-width: 260px;
  }

  .hero-photo {
    max-height: 560px;
  }

  .hero-meta,
  .work-grid,
  .offer-grid,
  .price-grid,
  .booking-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-meta span {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero-meta span:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 70px 16px;
  }

  .work-item,
  .work-item.large,
  .work-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .work-item,
  .work-item img {
    min-height: 390px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .offer-grid article {
    grid-template-rows: 280px 1fr;
  }

  .offer-grid div {
    min-height: 0;
  }

  .faq-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .faq-tabs button {
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.62rem;
  }

  .faq-list summary {
    padding-right: 42px;
  }

  .faq-list p {
    padding-right: 0;
  }

  .faq-cta .button {
    width: 100%;
  }

  .book-panel {
    padding: 24px 16px;
  }

  .hours div {
    flex-direction: column;
    gap: 4px;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-panel iframe {
    min-height: 430px;
  }

  .site-footer {
    justify-items: start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
