:root {
  --violet-950: #241124;
  --violet-900: #391238;
  --violet-800: #55133e;
  --violet-700: #6f1f55;
  --violet-100: #f5eaf4;
  --violet-50: #fbf6fb;
  --gold: #c88935;
  --gold-soft: #fff1ce;
  --text: #241b24;
  --muted: #6f6570;
  --white: #ffffff;
  --line: #eee5ee;
  --shadow: 0 22px 60px rgba(36, 17, 36, .14);
}

.receipt-preview-customizations {
  display: grid;
  gap: .15rem;
  margin-top: .25rem;
  color: #6f6070;
  font-size: .78rem;
  line-height: 1.35;
}

.receipt-preview-customizations em {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  background: var(--white);
}

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

a {
  text-decoration: none;
}

.section-padding {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-kicker {
  margin: 0 0 .85rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-heading h2,
.about-section h2 {
  margin: 0;
  color: var(--violet-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.section-heading p:not(.section-kicker),
.about-section p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(238, 229, 238, .9);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background-color .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 32px rgba(36, 17, 36, .08);
}

.navbar {
  min-height: 78px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: var(--violet-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.brand-mark:hover,
.footer-brand:hover {
  color: var(--violet-700);
}

.brand-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet-800), var(--gold));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  box-shadow: 0 12px 24px rgba(85, 19, 62, .2);
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  color: var(--text);
  font-size: .93rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--violet-700);
}

.btn-order,
.btn-primary-cafe,
.btn-soft {
  border-radius: 999px;
  padding: .8rem 1.25rem;
  font-weight: 800;
}

.btn-order,
.btn-primary-cafe {
  color: var(--white);
  background: var(--violet-800);
  border: 1px solid var(--violet-800);
  box-shadow: 0 14px 28px rgba(85, 19, 62, .18);
}

.btn-order:hover,
.btn-primary-cafe:hover {
  color: var(--white);
  background: var(--violet-700);
  border-color: var(--violet-700);
}

.btn-soft {
  color: var(--violet-800);
  background: var(--violet-100);
  border: 1px solid var(--violet-100);
}

.btn-soft:hover {
  color: var(--violet-950);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.8rem, 7vw, 6rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96) 0 42%, rgba(245, 234, 244, .9) 42% 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 42%;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 137, 53, .16), transparent 68%);
  pointer-events: none;
}

.hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--violet-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6.7vw, 6.4rem);
  line-height: .96;
}

.hero-text {
  max-width: 590px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--muted);
}

.hero-stats span {
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.hero-stats strong {
  color: var(--violet-800);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-main-img {
  width: min(100%, 560px);
  height: 560px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.featured-card,
.hours-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.featured-card {
  left: 0;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 260px;
  padding: .9rem;
}

.featured-card img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  object-fit: cover;
}

.featured-card strong,
.hours-card strong {
  display: block;
  color: var(--violet-950);
}

.featured-card span,
.hours-card span {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .88rem;
}

.hours-card {
  top: 36px;
  right: 0;
  padding: 1rem 1.2rem;
}

.menu-section {
  background:
    linear-gradient(180deg, var(--white) 0 46%, var(--violet-50) 46% 100%);
}

.menu-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(36, 17, 36, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-card.highlighted {
  background: var(--violet-900);
  border-color: var(--violet-900);
}

.menu-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.35rem;
}

.menu-tag {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  color: var(--violet-800);
  background: var(--violet-100);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 0;
  color: var(--violet-950);
  font-size: 1.2rem;
  font-weight: 800;
}

.menu-card p {
  margin: .65rem 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.menu-card strong {
  color: var(--gold);
  font-size: 1.08rem;
}

.menu-card.highlighted h3,
.menu-card.highlighted p,
.menu-card.highlighted strong {
  color: var(--white);
}

.gallery-section {
  color: var(--white);
  background: var(--violet-900);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--violet-800);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.about-section {
  background: var(--white);
}

.about-img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-list {
  display: grid;
  gap: .9rem;
  margin-top: 1.75rem;
}

.about-list div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--violet-50);
}

.about-list strong,
.about-list span {
  display: block;
}

.about-list strong {
  color: var(--violet-900);
}

.about-list span {
  margin-top: .25rem;
  color: var(--muted);
}

.location-section {
  background: var(--violet-50);
}

.location-section h2 {
  margin: 0;
  color: var(--violet-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.location-section p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.location-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(36, 17, 36, .08);
}

.location-panel div {
  padding: 1rem;
  border-radius: 8px;
  background: var(--violet-50);
}

.location-panel span,
.location-panel strong,
.location-panel small {
  display: block;
}

.location-panel span {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-panel strong {
  margin-top: .35rem;
  color: var(--violet-900);
  font-size: 1.05rem;
}

.location-panel small {
  margin-top: .2rem;
  color: var(--muted);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, .76);
  background: var(--violet-950);
}

.site-footer p {
  max-width: 430px;
  margin: 1rem 0 0;
  line-height: 1.75;
}

.site-footer h2 {
  margin: .4rem 0 1rem;
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
}

.site-footer ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, .76);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .56);
  font-size: .9rem;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0 1.25rem;
  }

  .btn-order {
    margin-top: .5rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-main-img {
    width: 100%;
    height: 480px;
  }

  .featured-card {
    left: 1rem;
  }

  .hours-card {
    right: 1rem;
  }

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

@media (max-width: 640px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-mark {
    font-size: 1.25rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-main-img {
    height: 390px;
    border-radius: 20px;
  }

  .featured-card,
  .hours-card {
    position: static;
    margin-top: 1rem;
  }

  .hero-stats {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .about-img {
    min-height: 340px;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
