:root {
  --dark: #15120f;
  --dark-2: #1e1a15;
  --red: #b3272c;
  --red-dark: #8f1f23;
  --ink: #241f1a;
  --muted: #6b6157;
  --cream: #f7f2e8;
  --cream-2: #efe6d3;
  --border: #e3d8c1;
  --paper: #fffdf9;
  --max-width: 1120px;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--dark);
  color: #fff;
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: #ece4d6;
  font-size: 0.95rem;
}

.site-nav a:hover { color: #fff; }

.nav-phone {
  background: var(--red);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone:hover { background: var(--red-dark); }

/* Location bar */
.location-bar {
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
}

.location-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.92rem;
  color: var(--muted);
}

.location-inner p { margin: 0; }

.location-inner a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
}

.location-inner a:hover { color: var(--red); }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 15%, rgba(179, 39, 44, 0.16), transparent 55%), var(--dark);
  color: #fff;
  padding: 96px 0 84px;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 30%;
  min-width: 260px;
  max-width: 420px;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8a5a8;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  margin: 0 0 20px;
  color: #fff;
}

.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #d9d1c4;
  margin: 0 0 32px;
  max-width: 640px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(179, 39, 44, 0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Contact info strip */
.contact-info {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info h2 {
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-info p { margin: 4px 0; color: var(--muted); }

.contact-info .address,
.contact-info .phone {
  color: var(--ink);
  font-weight: 600;
}

.contact-info .phone a {
  color: var(--ink);
  text-decoration: none;
}
.contact-info .phone a:hover { color: var(--red); }

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.visit-details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(36, 31, 26, 0.06);
}

.hours-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 24px 0 8px;
}

.hours-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--border);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.95rem;
}

.hours-list li span:first-child { font-weight: 600; }
.hours-list li span:last-child { color: var(--muted); }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(36, 31, 26, 0.1);
  border: 1px solid var(--border);
  line-height: 0;
}

@media (max-width: 800px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* About */
.about { padding: 80px 0; background: var(--paper); }

.about-inner { max-width: 800px; }

.about h2 {
  font-size: 2.1rem;
  color: var(--ink);
  margin: 0 0 8px;
}

.about h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 24px;
}

.about p {
  color: var(--muted);
  margin: 0 0 18px;
}

.about p:first-of-type::first-letter {
  color: var(--red);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6em;
  font-weight: 600;
}

.storefront-figure {
  margin: 0 0 36px;
}

.storefront-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(36, 31, 26, 0.16);
}

.storefront-figure figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(179, 39, 44, 0.2), transparent 60%);
  pointer-events: none;
}

.contact-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-size: 2rem;
  color: #fff;
  margin: 0 0 12px;
}

.contact-cta p {
  font-family: "Inter", sans-serif;
  color: #d9d1c4;
  margin: 0 0 28px;
}

.contact-cta .cta-row { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--dark-2);
  color: #b7ada0;
  padding: 36px 0;
  font-size: 0.9rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand {
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.footer-inner p { margin: 4px 0; }

.footer-inner a {
  color: #b7ada0;
  text-decoration: none;
}
.footer-inner a:hover { color: #fff; }

.footer-copy { color: #837a6f; }

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; row-gap: 10px; }
  .brand { width: 100%; justify-content: center; }
  .site-nav { width: 100%; gap: 14px; justify-content: space-between; }
  .nav-phone { padding: 6px 12px; font-size: 0.85rem; }
  .hero { padding: 64px 0 56px; }
  .hero-watermark { display: none; }
  .visit-details { padding: 24px; }
  .footer-inner { flex-direction: column; }
}
