:root {
  --navy: #0b1c33;
  --navy-deep: #050e1c;
  --gold: #c9a227;
  --gold-soft: #e0c56a;
  --black: #0a0a0a;
  --cream: #f7f3ea;
  --muted: #c5ceda;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1120px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--cream);
  background: var(--navy-deep);
  line-height: 1.55;
  position: relative;
}
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 14, 28, 0.72) 0%, rgba(5, 14, 28, 0.82) 45%, rgba(5, 14, 28, 0.9) 100%),
    url("assets/bg-shop.jpg") center/cover no-repeat fixed;
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(5, 14, 28, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #111;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--gold-soft);
  font-weight: 700;
}
.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav {
  display: none;
  gap: 1.15rem;
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--muted);
}
.nav a:hover { color: var(--gold-soft); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-soft);
}
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(7, 20, 38, 0.98);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8841a);
  color: #111;
}
.btn-gold:hover { filter: brightness(1.08); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline.dark {
  border-color: rgba(11, 28, 51, 0.25);
  color: var(--navy);
}
.btn-outline.dark:hover {
  border-color: var(--gold);
  color: #7a6210;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 14, 28, 0.25) 0%, rgba(5, 14, 28, 0.82) 68%, rgba(5, 14, 28, 1) 100%),
    linear-gradient(90deg, rgba(5, 14, 28, 0.78), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.25rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.6rem, 8vw, 4.8rem); color: var(--white); }
h2 { font-size: clamp(2rem, 5vw, 3.1rem); color: var(--white); }
h3 { font-size: 1.45rem; color: var(--gold-soft); }
.tagline {
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin: 0 0 1rem;
}
.lede {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.strip {
  background: linear-gradient(90deg, #8f7014, var(--gold), #8f7014);
  color: #1a1405;
  text-align: center;
  padding: 0.95rem 1rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 600;
}
.strip p { margin: 0; }

.section-head {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-head p:last-child { color: var(--muted); }

.about, .services, .gallery, .contact {
  padding: 4.5rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.about-card {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}
.about-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.about-copy { padding: 2rem 1.4rem 2.2rem; }
.about-copy p { color: var(--muted); margin: 0 0 1rem; }
.about-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.about-points li {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.22);
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #111;
}
.service-body { padding: 1rem 1.2rem 1.35rem; flex: 1; }
.service-body p { color: var(--muted); margin: 0; }

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: #111;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--cream);
  font-size: 0.92rem;
}

.visit { padding: 4.5rem 0; }
.visit-card {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  background: linear-gradient(145deg, #fbf7ef, #efe6d4);
  color: var(--navy);
  overflow: hidden;
}
.visit-copy { padding: 2.5rem 1.5rem; }
.visit-copy .eyebrow { color: #8f7014; }
.visit-copy h2 { color: var(--navy); }
.hours {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(11, 28, 51, 0.12);
}
.hours span { color: #445164; }
.owner { color: #5a6575; margin: 1rem 0 1.5rem; }
.visit-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.visit-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.contact { text-align: center; }
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-row {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-pill {
  display: block;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: rgba(255,255,255,0.04);
  text-align: left;
}
.contact-pill span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.contact-pill strong {
  font-size: 1rem;
  word-break: break-word;
}
.contact-pill:hover { border-color: var(--gold); }

.site-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer strong { color: var(--gold-soft); display: block; margin-bottom: 0.25rem; }
.site-footer p { margin: 0; }

@media (min-width: 768px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .header-actions { margin-left: 0; }
  .about-card { grid-template-columns: 0.95fr 1.05fr; }
  .about-media img { height: 100%; min-height: 420px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall img,
  .gallery-item.wide img { height: 320px; }
  .visit-card {
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: var(--radius);
    margin: 0 1.25rem;
  }
  .contact-row { grid-template-columns: repeat(3, 1fr); }
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    max-width: var(--max);
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .site-header { padding-inline: 2rem; }
  .hero-content { padding-inline: 2rem; }
  .about, .services, .gallery, .contact { padding-inline: 2rem; }
}


/* Social */
.social { padding: 4rem 1.25rem 2rem; max-width: var(--max); margin: 0 auto; }
.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.2));
  transition: transform .2s ease, border-color .2s ease;
}
.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,39,0.55);
}
.social-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.social-card strong { font-size: 1.05rem; }
.social-card.snapchat { box-shadow: inset 0 0 0 1px rgba(255,252,0,0.12); }
.social-card.instagram { box-shadow: inset 0 0 0 1px rgba(225,48,108,0.15); }
.social-card.tiktok { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }
@media (max-width: 800px) {
  .social-row { grid-template-columns: 1fr; }
}
