:root {
  --cherry: #d61f4d;
  --hot-pink: #f34f7d;
  --blush: #ffe1e9;
  --cream: #fff9ef;
  --ink: #151515;
  --green: #0c3b2e;
  --yellow: #ffd84d;
  --blue: #2457d6;
  --red: #e13735;
  --line: rgba(21, 21, 21, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; }
a { color: inherit; }

.site-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand img,
.footer-brand img {
  display: block;
  width: 132px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}

.site-header nav a:hover { color: var(--cherry); }

.site-header nav .nav-order {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--cherry);
  color: white;
}

.site-header nav .nav-order:hover {
  background: #ad143b;
  color: white;
}

.language-toggle {
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  padding: 4px;
  display: flex;
  gap: 2px;
  cursor: pointer;
}

.language-toggle span {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.language-toggle .active {
  background: var(--ink);
  color: white;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: clamp(40px, 7vw, 100px) clamp(20px, 6vw, 92px);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
}

.hero-copy { max-width: 700px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--cherry);
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 { font-size: clamp(3.3rem, 7.4vw, 7.6rem); }
h2 { font-size: clamp(2.6rem, 5vw, 5.2rem); }

.hero-text {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 600px;
  margin: 28px 0 32px;
  color: #413d3b;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  background: var(--cherry);
  color: white;
  box-shadow: 0 12px 30px rgba(214, 31, 77, 0.24);
}

.primary:hover { background: #ae133a; }

.secondary { border: 1px solid var(--ink); }

.secondary:hover {
  background: var(--ink);
  color: white;
}

.quick-info {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.quick-info > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.quick-info > div > span {
  color: var(--cherry);
  font-size: 1.1rem;
}

.quick-info p { margin: 0; }
.quick-info strong,
.quick-info small { display: block; }

.quick-info small {
  color: #6b6460;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 520px);
  height: 660px;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 260px 260px 28px 28px;
  box-shadow: 0 28px 80px rgba(95, 8, 35, 0.24);
  position: relative;
  z-index: 2;
}

.burst {
  position: absolute;
  width: 660px;
  height: 660px;
  background: repeating-conic-gradient(var(--yellow) 0 10deg, transparent 10deg 20deg);
  border-radius: 50%;
  opacity: 0.65;
}

.photo-note {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 44px;
  background: white;
  border: 1px solid var(--ink);
  padding: 14px 18px;
  border-radius: 12px;
  transform: rotate(-3deg);
  font-family: "Fraunces", serif;
  font-weight: 700;
  max-width: 210px;
}

.marquee {
  overflow: hidden;
  background: var(--green);
  color: white;
  padding: 15px 0;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.marquee div {
  width: max-content;
  animation: scroll 25s linear infinite;
}

.marquee span {
  color: var(--hot-pink);
  margin: 0 18px;
}

@keyframes scroll {
  to { transform: translateX(-40%); }
}

.section { padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 92px); }

.section-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.favorite-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.favorite-card {
  grid-column: span 2;
  overflow: hidden;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(46, 19, 27, 0.08);
}

.favorite-card.wide-favorite { grid-column: span 3; }

.favorite-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.favorite-card.wide-favorite img { aspect-ratio: 16 / 10; }
.favorite-card:hover img { transform: scale(1.035); }

.favorite-copy {
  padding: 22px 24px 26px;
}

.favorite-copy p {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cherry);
}

.favorite-copy h3,
.menu-columns h3,
.visit-grid h3 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
  line-height: 1.05;
}

.favorite-copy span {
  display: block;
  color: #5b5350;
}

.gallery {
  background: var(--blush);
  overflow: hidden;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.gallery-heading > div { max-width: 900px; }

.gallery-order {
  flex: 0 0 auto;
  background: var(--green);
  color: white;
}

.gallery-order:hover { background: #082a20; }

.photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  grid-template-rows: 310px 310px;
  gap: 18px;
}

.photo-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: white;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.photo-tile.tall { grid-row: 1 / 3; }
.photo-tile.wide { grid-column: 2 / 4; }

.photo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-tile:hover img { transform: scale(1.045); }
.photo-tile.wide img { object-position: center 48%; }

.photo-tile figcaption {
  padding: 14px 18px;
  background: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu {
  background: var(--ink);
  color: white;
}

.menu .eyebrow { color: #ff8eaa; }

.menu-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-intro p:last-child {
  margin: 0;
  color: #c9c5c2;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.menu-columns article {
  padding: 42px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-columns article:last-child { border-right: 0; }

.menu-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  margin-bottom: 28px;
}

.menu-icon.pink { background: var(--hot-pink); }
.menu-icon.yellow { background: var(--yellow); }
.menu-icon.blue { background: var(--blue); }
.menu-icon.red { background: var(--red); }

.menu-columns ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: #d8d4d2;
}

.menu-columns li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flavors {
  scroll-margin-top: 110px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.flavors-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.flavors-heading h3 {
  margin: 8px 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.flavors-heading > p {
  margin: 0;
  color: #c9c5c2;
}

.flavor-groups {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 20px;
}

.flavor-group {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
  background: #2a2425;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.flavor-group.water-based { background: var(--green); }

.flavor-group h4 {
  margin: 0 0 24px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

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

.flavor-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #f7f3f0;
  font-weight: 600;
  line-height: 1.25;
}

.flavor-list li::before {
  content: "●";
  color: #ff7898;
  font-size: 0.72rem;
  flex: 0 0 auto;
}

.menu-order-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.menu-order {
  background: var(--yellow);
  color: var(--ink);
}

.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  background: var(--cream);
}

.story-photo {
  height: 620px;
  border-radius: 280px 280px 30px 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(68, 20, 34, 0.16);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.story-copy p:last-child {
  font-size: 1.15rem;
  max-width: 650px;
  color: #514b48;
  margin-top: 28px;
}

.contact {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  background: var(--cherry);
  color: white;
}

.contact .eyebrow { color: var(--yellow); }

.contact-copy > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 1.15rem;
  color: #ffe7ed;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-primary {
  background: var(--yellow);
  color: var(--ink);
}

.contact-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.contact-secondary:hover {
  background: white;
  color: var(--cherry);
}

.visit { background: var(--yellow); }
.visit > .eyebrow { color: var(--green); }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.visit-grid article {
  padding: 34px 30px;
  min-height: 260px;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
}

.visit-grid article:last-child { border-right: 0; }
.visit-grid article > span { font-size: 0.75rem; font-weight: 700; }
.visit-grid h3 { margin-top: 38px; }
.visit-grid p { color: #413900; }
.visit-grid a { font-weight: 700; }

footer {
  background: var(--green);
  color: white;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 55px clamp(20px, 6vw, 92px);
}

.footer-brand p {
  margin: 15px 0 0;
  color: #c5d3cc;
}

.footer-brand img { width: 160px; }
footer > p { color: #c5d3cc; font-size: 0.85rem; }

@media (max-width: 1120px) {
  .site-header nav { gap: 16px; }
  .site-header nav a:not(.nav-order) { display: none; }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 76px;
  }

  .brand img { width: 110px; }
  .site-header nav { justify-self: end; }
  .site-header nav .nav-order { display: inline-flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-visual { min-height: 530px; }

  .hero-visual img {
    height: 540px;
    width: min(94%, 470px);
  }

  .burst { width: 520px; height: 520px; }
  .quick-info { flex-direction: column; gap: 18px; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .favorite-grid { grid-template-columns: repeat(2, 1fr); }
  .favorite-card,
  .favorite-card.wide-favorite { grid-column: auto; }

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

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 320px 320px;
  }

  .photo-tile.tall { grid-column: 1 / 2; grid-row: 1 / 2; }
  .photo-tile.wide { grid-column: 2 / 3; grid-row: 1 / 2; }

  .menu-intro { grid-template-columns: 1fr; }
  .menu-columns { grid-template-columns: 1fr 1fr; }
  .menu-columns article:nth-child(2) { border-right: 0; }
  .menu-columns article:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

  .flavors-heading,
  .flavor-groups { grid-template-columns: 1fr; }

  .story-photo {
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }

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

  .visit-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    min-height: 0;
  }

  .visit-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .site-header { gap: 10px; padding-inline: 16px; }
  .site-header nav .nav-order {
    display: inline-flex;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero { padding-left: 20px; padding-right: 20px; }

  .hero-visual { min-height: 430px; }

  .hero-visual img {
    height: 440px;
    border-radius: 220px 220px 22px 22px;
  }

  .burst { width: 430px; height: 430px; }
  .photo-note { right: 0; bottom: 18px; }
  .quick-info { font-size: 0.9rem; }
  .section { padding-left: 20px; padding-right: 20px; }
  .favorite-grid { grid-template-columns: 1fr; }
  .favorite-card img,
  .favorite-card.wide-favorite img { aspect-ratio: 4 / 5; }

  .flavor-list { grid-template-columns: 1fr 1fr; }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 460px);
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .menu-columns article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu-columns article:nth-child(3) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

  .story-photo {
    height: 500px;
    border-radius: 220px 220px 24px 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
  .favorite-card img,
  .photo-tile img,
  .button { transition: none; }
}
