:root {
  --bg: #0b0a09;
  --bg-2: #12100e;
  --bg-3: #1a1714;
  --ink: #f4eee6;
  --muted: #b7ab9c;
  --faint: #8a7f72;
  --line: rgba(212, 175, 122, 0.22);
  --gold: #d4af7a;
  --gold-2: #e8c99a;
  --gold-dim: #8a6a3e;
  --danger: #c45c4a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 2px;
  --max: 1180px;
  --nav-h: 84px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 200;
}

.skip:focus {
  left: 8px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.gold {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.eyebrow::before {
  display: none;
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  font-weight: 500;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 56ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.25s ease;
  background: var(--gold);
  color: #16120e;
}

.btn:hover {
  background: var(--gold-2);
}

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

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

.btn-line {
  background: transparent;
  border: 0;
  color: var(--gold);
  padding: 0;
  min-height: 0;
  letter-spacing: 0.2em;
}

.btn-line:hover {
  color: var(--gold-2);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(11, 10, 9, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 60;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand-fallback {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 13px;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 40px) 0 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.35) 0%, rgba(11, 10, 9, 0.18) 28%, rgba(11, 10, 9, 0.72) 68%, rgba(11, 10, 9, 0.96) 100%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.55), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.hero h1 {
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.86;
  font-weight: 500;
  max-width: 10ch;
  margin: 18px 0 18px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}

.hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 32px;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  max-width: 640px;
}

.hero-meta span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-meta p {
  font-size: 15px;
  color: var(--ink);
}

.rating-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
  margin: 14px 0 24px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16.5px;
}

.about-copy p strong {
  color: var(--ink);
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-stats b {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stats span {
  font-size: 13px;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.about-frame {
  position: relative;
}

.about-frame img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  filter: grayscale(0.2);
}

.about-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  opacity: 0.45;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  left: -28px;
  bottom: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px 24px;
  width: 210px;
}

.about-badge small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 8px;
}

.about-badge p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.services {
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(212, 175, 122, 0.07), transparent 60%),
    var(--bg-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--bg-2);
  padding: 36px 34px 32px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease;
}

.service-card:hover {
  background: #1e1a16;
}

.service-card .num {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.service-card h3 {
  font-size: 32px;
  line-height: 1.05;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  max-width: 46ch;
}

.service-note {
  margin-top: 28px;
  color: var(--faint);
  font-size: 14px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: #000;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: grayscale(0.25);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.reviews {
  background: var(--bg-2);
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 32px 28px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card q {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  quotes: none;
}

.review-card footer {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hours-visit {
  background: var(--bg);
}

.hours-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--line);
}

.hours-table td {
  padding: 14px 0;
  font-size: 16px;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--muted);
}

.hours-table tr.today td {
  color: var(--gold);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.status-pill.closed i {
  background: var(--danger);
}

.parking-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
}

.parking-box h3 {
  font-size: 32px;
  margin: 8px 0 14px;
}

.parking-box p {
  color: var(--muted);
  margin-bottom: 12px;
}

.parking-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.parking-photos img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.contact {
  background:
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-details {
  display: grid;
  gap: 26px;
}

.contact-details h3 {
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-details a:hover,
.contact-details p a:hover {
  color: var(--gold);
}

.form {
  display: grid;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 28px;
}

.form h3 {
  font-size: 34px;
  margin-bottom: 4px;
}

.form p.hint {
  color: var(--muted);
  margin-bottom: 8px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.form input,
.form textarea,
.form select {
  background: #100e0c;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
}

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

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-status {
  min-height: 20px;
  font-size: 14px;
  color: var(--gold);
}

.map-wrap {
  margin-top: 48px;
  border: 1px solid var(--line);
  overflow: hidden;
  height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}

.cta-band {
  padding: 88px 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.55), rgba(11, 10, 9, 0.82)),
    url("../images/shop-1.jpg") center/cover no-repeat;
}

.cta-band h2 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.95;
  margin: 12px 0 18px;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: #090807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--muted);
  font-size: 14px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 32px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .about-grid,
  .hours-grid,
  .contact-grid,
  .footer-grid,
  .review-track,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 220px 220px;
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 320px;
  }

  .about-frame img {
    height: 460px;
  }

  .about-badge {
    left: 16px;
    bottom: 16px;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(11, 10, 9, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links a {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 72px;
  }

  .container,
  .hero-content,
  .nav-wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    align-items: center;
    padding-bottom: 48px;
  }

  .hero-meta,
  .about-stats,
  .form-row,
  .parking-photos,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item:first-child {
    height: 240px;
  }

  .brand img {
    height: 28px;
  }

  .hero-actions .btn,
  .nav-cta .btn {
    width: 100%;
  }

  .nav-cta {
    display: none;
  }
}
