:root {
  --black: #050505;
  --ink: #0b0b0b;
  --panel: #111111;
  --panel-soft: #171717;
  --bone: #eee7da;
  --muted: #bbb2a5;
  --line: rgba(238, 231, 218, 0.16);
  --gold: #bc975c;
  --gold-strong: #d8b06d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --header-height: 98px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 50% -20%, rgba(188, 151, 92, 0.18), transparent 38rem),
    var(--black);
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: var(--bone);
  color: var(--black);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  padding: 1.15rem 1rem 0;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  top: 0.15rem;
  left: max(1rem, calc((100vw - 1180px) / 2));
  z-index: 3;
  width: 17rem;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.76));
  pointer-events: auto;
  transform: translateY(-0.2rem);
}

.nav-shell {
  position: relative;
  max-width: 1180px;
  min-height: 4.35rem;
  margin: 1.55rem auto 0;
  padding: 0.8rem 0.85rem 0.8rem 19rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a,
.icon-link,
.social-row a {
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav a {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-row a:hover,
.social-row a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--bone);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.12rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 176, 109, 0.7);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bone), var(--gold-strong));
  color: #070707;
  box-shadow: 0 18px 36px rgba(188, 151, 92, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bone);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.2);
  color: var(--bone);
}

.btn-small {
  min-height: 2.8rem;
  padding: 0.65rem 0.95rem;
}

.hero {
  position: relative;
  min-height: 66svh;
  display: grid;
  place-items: center;
  padding: 2.2rem 1rem 2.8rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.9)),
    url("../images/hero-backdrop.jpg") center / cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.ink-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(125deg, transparent 0 45%, rgba(188, 151, 92, 0.12) 45% 45.35%, transparent 45.35% 100%),
    linear-gradient(20deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 58.15%, transparent 58.15% 100%);
  opacity: 0.9;
  animation: lineShift 14s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--black));
}

.hero-content {
  width: min(100%, 960px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-logo {
  width: min(100%, 28rem);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.72));
}

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

h1 {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 3.8rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.1rem;
  line-height: 1.03;
  color: var(--white);
}

h3 {
  margin-bottom: 0.6rem;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 44rem;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  width: 2rem;
  height: 3.2rem;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.55rem;
}

.scroll-cue span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--gold-strong);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 5.5rem 1rem;
  scroll-margin-top: 7.5rem;
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-heading p,
.section-copy p,
.contact-info p,
.offer-card p {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.stat-strip {
  display: grid;
  gap: 0.8rem;
}

.stat-strip div,
.service-card,
.trust-card,
.price-card,
.contact-form,
.hours-box,
.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.stat-strip div {
  padding: 1rem;
}

.stat-strip strong {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat-strip span {
  color: var(--muted);
}

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

.service-card,
.trust-card {
  min-height: 15rem;
  padding: 1.15rem;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 176, 109, 0.6);
  background: linear-gradient(180deg, rgba(188, 151, 92, 0.16), rgba(255, 255, 255, 0.035));
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(188, 151, 92, 0.45);
  border-radius: 50%;
  color: var(--gold-strong);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.24);
}

.service-card p,
.trust-card p,
.price-note {
  margin-bottom: 0;
  color: var(--muted);
}

.specials,
.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0));
}

.specials-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.special-list {
  display: grid;
  gap: 1rem;
}

.price-card {
  padding: 1.25rem;
}

.price-card ul,
.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.price-card li strong {
  color: var(--bone);
  font-size: 1.2rem;
}

.poster-stack {
  position: relative;
  min-height: 41rem;
}

.poster-card {
  position: absolute;
  inset: 0 auto auto 0;
  width: 55%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.poster-card img,
.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-card:hover img,
.image-tile:hover img,
.poster-card:focus-visible img,
.image-tile:focus-visible img {
  transform: scale(1.05);
}

.poster-offset {
  left: auto;
  right: 0;
  top: 4.5rem;
}

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

.gallery-button,
.image-tile {
  border: 0;
  color: inherit;
  text-align: left;
  appearance: none;
}

.image-tile {
  position: relative;
  min-height: 23rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.instagram-tile {
  display: block;
}

.instagram-tile span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.86);
  border: 1px solid rgba(188, 151, 92, 0.5);
  color: var(--bone);
  font-weight: 700;
}

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

.trust-card {
  min-height: 10.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.contact-list a {
  display: grid;
  grid-template-columns: 1.45rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  overflow-wrap: anywhere;
}

.contact-list svg {
  margin-top: 0.25rem;
  color: var(--gold-strong);
}

.hours-box {
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.hours-box p {
  margin-bottom: 0.3rem;
}

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

.social-row a {
  min-height: 2.7rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
}

.contact-form {
  padding: 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  color: var(--bone);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-strong);
  box-shadow: 0 0 0 3px rgba(188, 151, 92, 0.18);
}

.map-wrap {
  width: min(100% - 2rem, 1180px);
  margin: 2rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 22rem;
  background: var(--panel);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 24rem;
  border: 0;
  filter: grayscale(1) contrast(1.12);
}

.owner-offer {
  padding-top: 2rem;
}

.offer-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(188, 151, 92, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 10, 0.92);
}

.offer-card ul {
  max-width: 34rem;
  margin: 1.2rem auto 1.5rem;
  text-align: left;
}

.offer-card li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer {
  padding: 3.5rem 1rem 1.1rem;
  background: #030303;
  text-align: center;
}

.footer-inner {
  width: min(100%, 900px);
  margin: 0 auto 1.7rem;
  color: var(--muted);
}

.footer-inner img {
  width: 18rem;
  margin: 0 auto 1rem;
}

.footer-inner p {
  margin-bottom: 0.45rem;
}

.footer-inner a,
.minipage-credit a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(188, 151, 92, 0.6);
  text-underline-offset: 0.2rem;
}

.minipage-credit {
  margin: 0;
  color: #a9a093;
  font-size: 0.88rem;
  text-align: center;
}

.mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 4rem;
  display: grid;
  place-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.3rem;
  color: var(--bone);
  font-size: 0.82rem;
  border-right: 1px solid var(--line);
}

.mobile-cta a:last-child {
  border-right: 0;
}

.mobile-cta svg {
  color: var(--gold-strong);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 54rem);
  max-height: 80vh;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--bone);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(216, 176, 109, 0.85);
  outline-offset: 3px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0, -1.2rem, 0);
  }
}

@keyframes lineShift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 10rem 5rem, -8rem 3rem;
  }
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(1.45rem);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    padding-left: 14.5rem;
  }

  .floating-logo {
    width: 13rem;
  }

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

@media (max-width: 780px) {
  body {
    padding-bottom: 5rem;
  }

  .site-header {
    min-height: 7.7rem;
    padding-inline: 0.75rem;
  }

  .floating-logo {
    left: 50%;
    width: 13.2rem;
    transform: translate(-50%, -0.1rem);
  }

  .nav-shell {
    min-height: 4.3rem;
    margin-top: 2.45rem;
    padding: 0.65rem 0.65rem;
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .header-actions .icon-link,
  .header-actions .btn {
    flex: 1;
  }

  .hero {
    min-height: 72svh;
    padding-top: 2.8rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-buttons {
    align-items: stretch;
  }

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

  .split-layout,
  .specials-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .poster-stack {
    min-height: 35rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 18rem;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 4rem 0.85rem;
  }

  .site-header {
    min-height: 6.35rem;
    padding-top: 0.35rem;
  }

  .floating-logo {
    width: 10.2rem;
    top: 0.1rem;
  }

  .nav-shell {
    min-height: 3.1rem;
    margin-top: 3rem;
    padding: 0.35rem;
  }

  .header-actions {
    display: none;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-actions .btn,
  .header-actions .icon-link {
    min-height: 2.75rem;
    padding-inline: 0.6rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 69svh;
    padding-inline: 0.85rem;
    padding-top: 2rem;
    padding-bottom: 5.8rem;
  }

  .hero-logo {
    width: 14.6rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    margin-bottom: 1rem;
    font-size: 0.98rem;
  }

  .hero-buttons {
    gap: 0.55rem;
  }

  .hero-buttons .btn {
    min-height: 2.9rem;
    padding: 0.7rem 0.85rem;
  }

  .scroll-cue {
    display: none;
  }

  .card-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .poster-stack {
    min-height: 31rem;
  }

  .poster-card {
    width: 62%;
  }

  .poster-offset {
    top: 4rem;
  }

  .price-card li {
    align-items: start;
  }

  .contact-form,
  .price-card,
  .offer-card,
  .hours-box {
    padding: 1rem;
  }

  .map-wrap iframe {
    height: 20rem;
  }

  .footer-inner img {
    width: 15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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