:root {
  --bg: #11100d;
  --bg-deep: #090806;
  --panel: rgba(255, 248, 232, 0.04);
  --panel-strong: rgba(255, 248, 232, 0.08);
  --text: #f5ecd9;
  --muted: rgba(245, 236, 217, 0.72);
  --line: rgba(245, 236, 217, 0.14);
  --accent: #d58f34;
  --accent-strong: #b54727;
  --green: #213228;
  --shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
  --header-font: "Oswald", sans-serif;
  --body-font: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top left, rgba(213, 143, 52, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(33, 50, 40, 0.32), transparent 30%),
    linear-gradient(180deg, #1a1813 0%, var(--bg) 34%, var(--bg-deep) 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 28px;
}

.site-header,
.site-footer,
.hours-card,
.service-card,
.hero-badge {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-mark,
.eyebrow,
.section-kicker,
.signal-label {
  margin: 0;
  font-family: var(--header-font);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-mark {
  font-size: 1rem;
  white-space: nowrap;
}

.concept-note,
.hero-note {
  margin: 0;
  color: var(--muted);
}

.concept-note {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 18px;
  margin: 14px 0 12px;
}

.hero-copy,
.hero-visual {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    linear-gradient(140deg, rgba(213, 143, 52, 0.12), transparent 42%);
}

.hero-copy h1,
.hours-card h2,
.service-card h3 {
  margin: 0;
  font-family: var(--header-font);
  text-transform: uppercase;
  line-height: 0.94;
}

.hero-copy h1 {
  margin-top: 10px;
  max-width: 12.5ch;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
}

.hero-text,
.hours-card p,
.service-card p,
.footer-note,
.contact-block,
.button-outline,
.text-link {
  color: var(--muted);
}

.hero-text {
  max-width: 40rem;
  margin: 14px 0 0;
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-family: var(--header-font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button-solid {
  border-color: rgba(213, 143, 52, 0.45);
  background:
    linear-gradient(180deg, rgba(213, 143, 52, 0.26), rgba(213, 143, 52, 0.08));
}

.button-outline {
  background: transparent;
}

.hero-visual {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.visual-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 0;
  background: #0f0d0a;
}

.visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(0.82);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.08), rgba(8, 6, 5, 0.5) 62%, rgba(8, 6, 5, 0.88) 100%),
    radial-gradient(circle at top left, rgba(213, 143, 52, 0.18), transparent 28%);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 14px;
}

.hero-badge span,
.hours-list span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--header-font);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-badge strong {
  display: block;
  font-family: var(--header-font);
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: end;
  gap: 12px;
  margin-bottom: 12px;
}

.photo-card {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(245, 236, 217, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(33, 50, 40, 0.42), rgba(9, 8, 6, 0.86) 76%);
  box-shadow: var(--shadow);
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.8);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.06), rgba(10, 8, 6, 0.46) 64%, rgba(10, 8, 6, 0.88) 100%),
    radial-gradient(circle at top left, rgba(213, 143, 52, 0.26), transparent 30%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(245, 236, 217, 0.05) calc(100% - 1px)),
    linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(245, 236, 217, 0.04) calc(100% - 1px));
  background-size: auto, auto, 30px 30px, 30px 30px;
  opacity: 0.8;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 236, 217, 0.18);
  background: rgba(245, 236, 217, 0.04);
  backdrop-filter: blur(8px);
}

.photo-card span,
.photo-card strong {
  position: absolute;
  left: 16px;
  z-index: 1;
}

.photo-card span {
  bottom: 34px;
  font-family: var(--header-font);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.photo-card strong {
  right: 12px;
  bottom: 10px;
  font-family: var(--header-font);
  font-size: clamp(0.84rem, 1.1vw, 1rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.essentials-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-bottom: 14px;
}

.hours-card h2 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.hours-card,
.service-card {
  padding: 18px;
}

.service-card h3 {
  margin-top: 10px;
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.42rem);
  line-height: 1.02;
}

.hours-card,
.service-card {
  box-shadow: var(--shadow);
}

.service-card-highlight {
  background:
    linear-gradient(180deg, rgba(213, 143, 52, 0.12), rgba(255, 255, 255, 0.025));
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 14px 0 2px;
}

.quick-links a {
  color: var(--text);
  font-family: var(--header-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-links-stack {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.hours-list li,
.specials-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 236, 217, 0.08);
}

.hours-list li:last-child,
.specials-list li:last-child {
  border-bottom: 0;
}

.hours-list span,
.specials-list span {
  margin: 0;
  font-size: 0.84rem;
}

.hours-list strong {
  font-weight: 500;
}

.specials-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.specials-list strong {
  font-weight: 500;
  text-align: right;
}

.micro-note,
.text-link {
  font-size: 0.94rem;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button-small {
  min-height: 42px;
  margin-top: 10px;
}

.site-footer {
  align-items: flex-start;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

@media (max-width: 980px) {
  .hero,
  .essentials-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hours-list,
  .specials-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .photo-card {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .site-header,
  .site-footer,
  .hero-copy,
  .hero-visual,
  .hours-card,
  .service-card {
    padding: 18px;
  }

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

  .contact-block {
    text-align: left;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .visual-frame {
    min-height: 280px;
  }

  .photo-grid {
    justify-content: stretch;
  }

  .photo-card {
    min-height: 108px;
  }
}
