:root {
  --ink: #241919;
  --muted: #6c5b56;
  --paper: #fffaf1;
  --cream: #fff0d2;
  --mango: #f6a623;
  --strawberry: #e94f73;
  --water: #179ed8;
  --mint: #31a66a;
  --chocolate: #3b2824;
  --line: rgba(36, 25, 25, 0.14);
  --shadow: 0 20px 50px rgba(59, 40, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5vw;
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-logo {
  flex: 0 0 auto;
  width: 96px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(36, 25, 25, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  color: var(--ink);
  background: #fff;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
}

.header-call {
  flex: 0 0 auto;
  padding: 0 18px;
  color: #fff;
  background: var(--chocolate);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
  padding: 56px 5vw 64px;
  background:
    linear-gradient(105deg, rgba(255, 240, 210, 0.92), rgba(255, 250, 241, 0.78) 55%, rgba(23, 158, 216, 0.12)),
    linear-gradient(180deg, var(--paper), #ffffff);
}

.hero-copy,
.section-heading,
.visit-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--water);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 4.5rem;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  color: #4e3f3b;
  font-size: 1.18rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  padding: 0 22px;
  border: 2px solid transparent;
}

.button-primary {
  color: #fff;
  background: var(--strawberry);
  box-shadow: 0 14px 30px rgba(233, 79, 115, 0.28);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin: 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 6px 0 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.rating-value {
  display: grid;
  gap: 6px;
}

.stars {
  position: relative;
  display: inline-block;
  width: max-content;
  color: rgba(36, 25, 25, 0.2);
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1;
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating);
  overflow: hidden;
  color: #ffca42;
  white-space: nowrap;
}

.stars-base {
  display: block;
}

.hero-media {
  position: relative;
  height: 640px;
  min-height: 620px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #fff;
  background: rgba(36, 25, 25, 0.86);
  border-radius: 8px;
}

.media-note span {
  font-weight: 800;
}

.media-note strong {
  color: #ffca42;
  white-space: nowrap;
}

.specialties,
.reviews-section,
.menu-section,
.flavors-section,
.visit-section {
  padding: 76px 5vw;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.section-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.specialty-card {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(36, 25, 25, 0.08);
}

.specialty-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.specialty-mark {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.waterice-mark {
  background:
    radial-gradient(circle at 30% 30%, #ffe267 0 18%, transparent 19%),
    radial-gradient(circle at 67% 37%, #e94f73 0 19%, transparent 20%),
    radial-gradient(circle at 48% 66%, #179ed8 0 27%, transparent 28%),
    #fff2cb;
}

.icecream-mark {
  background:
    radial-gradient(circle at 50% 28%, #fff 0 24%, transparent 25%),
    radial-gradient(circle at 48% 58%, #f6a623 0 26%, transparent 27%),
    linear-gradient(180deg, #e94f73, #fff0d2);
}

.gelati-mark {
  background:
    linear-gradient(180deg, #179ed8 0 32%, #fff 33% 62%, #f6a623 63%),
    #fff;
}

.snack-mark {
  background:
    radial-gradient(circle at 50% 50%, #fff0d2 0 22%, transparent 23%),
    repeating-conic-gradient(from 20deg, #e94f73 0 14deg, #f6a623 14deg 30deg);
}

.reviews-section {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 230px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-score {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--ink);
  background: #ffca42;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-stars {
  display: block;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.favorite-price-panel {
  margin-top: 34px;
}

.price-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-reference-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(36, 25, 25, 0.08);
}

.price-reference-card img {
  width: 100%;
  aspect-ratio: 16 / 8.55;
  object-fit: cover;
}

.price-reference-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.price-reference-card h3,
.price-reference-card p {
  margin: 0;
}

.price-reference-card p {
  color: var(--strawberry);
  font-weight: 900;
  white-space: nowrap;
}

.menu-section {
  background: var(--chocolate);
  color: #fff;
}

.menu-section .eyebrow {
  color: #ffca42;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  min-height: 44px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.tab:hover,
.tab.is-active {
  color: var(--ink);
  background: #ffca42;
  border-color: #ffca42;
}

.menu-panels {
  max-width: 1080px;
}

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

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.price-list span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.price-list strong {
  color: #ffca42;
  font-size: 1.08rem;
}

.flavors-section {
  background: #fff;
}

.flavor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavor-cloud span {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(246, 166, 35, 0.28);
  border-radius: 999px;
  font-weight: 800;
}

.flavor-cloud span:nth-child(3n + 1) {
  background: rgba(23, 158, 216, 0.12);
  border-color: rgba(23, 158, 216, 0.24);
}

.flavor-cloud span:nth-child(3n + 2) {
  background: rgba(233, 79, 115, 0.12);
  border-color: rgba(233, 79, 115, 0.22);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.visit-copy p {
  max-width: 620px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-grid a {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  font-size: 1.05rem;
}

.profile-snapshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-snapshots img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

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

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-media,
  .hero-media img {
    height: 520px;
    min-height: 480px;
  }

  .specialty-grid,
  .review-grid,
  .price-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .brand strong {
    max-width: 160px;
    overflow-wrap: anywhere;
    line-height: 1.1;
  }

  .hero-copy {
    width: 100%;
    max-width: 342px;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-actions,
  .hero-stats,
  .price-list,
  .profile-snapshots {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    display: grid;
  }

  .specialties,
  .reviews-section,
  .menu-section,
  .flavors-section,
  .visit-section {
    padding: 56px 5vw;
  }

  .specialty-grid,
  .review-grid,
  .price-reference-grid {
    grid-template-columns: 1fr;
  }

  .price-reference-card div {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-reference-card p {
    white-space: normal;
  }

  .media-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-snapshots img {
    height: 520px;
  }

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

  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 70px;
    height: 50px;
  }

  .header-call {
    min-height: 42px;
    padding: 0 14px;
  }

  h1 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }
}
