:root {
  --bg: #0d0f12;
  --bg-soft: #161a20;
  --text: #f8f4ed;
  --muted: #c4d8cc;
  --line: #2a3038;
  --accent: #9ccfb6;
  --accent-2: #d8efe3;
  --accent-warm: #c69257;
  --accent-warm-2: #e0ad74;
  --ok: #8fd7ab;
  --radius: 18px;
  --container: 1120px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, #243c33 0%, transparent 42%),
    radial-gradient(circle at 70% 4%, #2b1f16 0%, transparent 34%),
    radial-gradient(circle at 80% 0%, #1b2631 0%, transparent 36%), var(--bg);
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.5;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  opacity: 0.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  backdrop-filter: blur(8px);
  background: rgba(13, 15, 18, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-top,
.brand-bottom {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
}

.brand-top {
  font-size: 0.8rem;
  color: var(--muted);
}

.brand-bottom {
  margin-top: 0.28rem;
  font-size: 1.1rem;
}

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

.site-header nav a {
  color: #f4efe6;
  text-decoration: none;
  font-size: 0.94rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

.section-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.hero {
  padding-top: clamp(2.2rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(156, 207, 182, 0.4);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--accent-2);
  background: rgba(156, 207, 182, 0.12);
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.1;
}

.hero h1 {
  margin-top: 1rem;
  max-width: 16ch;
  letter-spacing: -0.02em;
}

.hero-title {
  display: grid;
  gap: 0.5rem;
}

.hero-title-brand {
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.95;
  background: linear-gradient(120deg, #f5efe3, #d8efe3 55%, #9ccfb6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-tag {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  color: #e6dccf;
}

.lead {
  margin-top: 1rem;
  max-width: 62ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d8e4dc;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(120deg, #9ccfb6, #d8efe3);
  color: #13211b;
}

.btn-secondary {
  color: #f0e6d8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.quick-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.quick-points li {
  padding-left: 1.15rem;
  position: relative;
  color: #d9e3dc;
}

.quick-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #d8efe3, #9ccfb6);
}

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

.info-strip article {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.info-strip h2 {
  font-size: 1.06rem;
}

.info-strip p {
  margin: 0.6rem 0 0;
  color: #d0ddd5;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.section-head h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}

.section-head a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(241, 199, 145, 0.6);
}

.section-head a:hover,
.section-head a:focus-visible {
  opacity: 0.85;
}

.section-note {
  margin: 0 0 1rem;
  color: #ceddd4;
}

.hours-widget {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(216, 239, 227, 0.08), rgba(255, 255, 255, 0.02));
  padding: 1rem;
}

.hours-status {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  line-height: 1.2;
  color: #ecf7f1;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.hours-meta {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: #9cb5aa;
}

.hours-summary {
  margin: 0.55rem 0 0;
  color: #d5e4dc;
  font-weight: 500;
}

.hours-live-dot {
  width: 0.62rem;
  height: 0.62rem;
  margin-left: 0.62rem;
  border-radius: 999px;
  background: #6dff9f;
  box-shadow: 0 0 0 0 rgba(109, 255, 159, 0.75);
  animation: pulse-live 1.45s ease-out infinite;
}

.hours-more-row {
  margin-top: 0.75rem;
}

.hours-more-btn {
  border: 1px solid rgba(216, 239, 227, 0.45);
  color: #d8efe3;
  background: rgba(12, 20, 18, 0.55);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.hours-more-btn:hover,
.hours-more-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 239, 227, 0.78);
  background: rgba(18, 34, 28, 0.82);
}

.hours-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.hours-list li {
  color: #d5e4dc;
  font-size: 0.93rem;
}

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

.price-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 1rem;
}

.price-group h3 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  color: #e6f2eb;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.price-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  background: rgba(0, 0, 0, 0.18);
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
}

.price-top strong {
  font-size: 0.96rem;
  color: #f4eee4;
}

.price-top span {
  font-weight: 700;
  color: #d8efe3;
  white-space: nowrap;
}

.price-list p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #cbd9d1;
}

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

.ig-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  transform: translateY(8px);
  opacity: 0;
  animation: reveal 0.55s ease forwards;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.ig-item:hover img,
.ig-item:focus-visible img {
  transform: scale(1.06);
}

.ig-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.25rem 0.45rem;
  color: #161616;
  background: rgba(216, 239, 227, 0.95);
}

.ig-fallback-text {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  font-size: 0.82rem;
  color: #d8efe3;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(216, 239, 227, 0.4);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.ig-more-row {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
}

.ig-more-btn {
  border: 1px solid rgba(216, 239, 227, 0.45);
  color: #d8efe3;
  background: rgba(12, 20, 18, 0.55);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ig-more-btn:hover,
.ig-more-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(18, 34, 28, 0.8);
  border-color: rgba(216, 239, 227, 0.75);
}

.google-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius);
  padding: 1rem;
}

.google-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.google-summary strong {
  font-size: 1.05rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d8efe3;
}

.state-pill {
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.state-open {
  color: #d0f3dd;
  background: rgba(143, 215, 171, 0.15);
  border-color: rgba(143, 215, 171, 0.5);
}

.state-closed {
  color: #ffd3c5;
  background: rgba(249, 122, 91, 0.15);
  border-color: rgba(249, 122, 91, 0.5);
}

.hours {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
  color: #eadbc6;
  font-size: 0.95rem;
}

.review-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(10, 10, 10, 0.25);
}

.review p {
  margin: 0.45rem 0 0;
  color: #e7d8c4;
  font-size: 0.93rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: #c9b496;
}

.contact-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding-bottom: 2.5rem;
}

.contact-card,
.map-frame {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.contact-card {
  padding: 1rem;
}

.contact-card h2 {
  margin-bottom: 0.8rem;
}

.contact-card p {
  margin: 0.35rem 0;
  color: #d8e3dc;
}

.contact-card a {
  color: var(--accent-2);
}

.socials {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.socials a {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
}

.map-frame {
  overflow: hidden;
  min-height: 300px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ccb79b;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

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

@keyframes reveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 255, 159, 0.75);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(109, 255, 159, 0);
  }
}

@media (max-width: 980px) {
  .info-strip {
    grid-template-columns: 1fr;
  }

  .price-board {
    grid-template-columns: 1fr;
  }

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

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .mobile-hide {
    display: none;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav {
    flex-wrap: wrap;
  }

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

  .hero h1 {
    max-width: 12ch;
  }
}
