:root {
  --ink: #173128;
  --muted: #627167;
  --cream: #fff8e6;
  --paper: #fffdf3;
  --lime: #b8d936;
  --mango: #f7b733;
  --berry: #e94b7c;
  --melon: #48ad68;
  --orange: #f26a2e;
  --shadow: 0 22px 60px rgba(23, 49, 40, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 230, 0.92);
  border-bottom: 2px solid rgba(23, 49, 40, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark,
.pin {
  color: var(--berry);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--orange);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-button {
  background: var(--lime);
}

.button:hover,
.nav-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-primary {
  background: var(--berry);
  color: white;
}

.button-secondary {
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.notice-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
}

.notice-bar a {
  color: var(--lime);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 118px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 10vw, 9.6rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.hero-text {
  max-width: 580px;
  margin: 24px 0;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  color: var(--muted);
}

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

.hero-art {
  position: relative;
  min-height: 540px;
}

.sun,
.leaf,
.fruit,
.smoothie-cup,
.story-circle,
.feature-fruit,
.feature-cup {
  position: absolute;
}

.sun {
  inset: 7% 4% auto auto;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mango);
  box-shadow: inset -18px -18px 0 rgba(242, 106, 46, 0.22);
}

.leaf {
  width: 180px;
  height: 72px;
  border-radius: 100% 0 100% 0;
  background: var(--melon);
}

.leaf-one {
  left: 0;
  top: 26%;
  transform: rotate(-28deg);
}

.leaf-two {
  right: 0;
  bottom: 15%;
  transform: rotate(140deg);
  background: var(--lime);
}

.fruit {
  border-radius: 50%;
  border: 5px solid var(--ink);
}

.fruit-orange {
  width: 118px;
  aspect-ratio: 1;
  left: 8%;
  bottom: 12%;
  background: var(--orange);
}

.fruit-lime {
  width: 86px;
  aspect-ratio: 1;
  right: 9%;
  top: 22%;
  background: var(--lime);
}

.smoothie-cup {
  left: 50%;
  bottom: 6%;
  width: min(290px, 70vw);
  height: 390px;
  transform: translateX(-50%) rotate(-5deg);
}

.straw {
  position: absolute;
  left: 52%;
  top: -72px;
  width: 22px;
  height: 150px;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, white 0 12px, var(--berry) 12px 24px);
  border: 4px solid var(--ink);
}

.cup-lid {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 42px;
  height: 54px;
  border: 5px solid var(--ink);
  border-radius: 50% 50% 12px 12px;
  background: var(--paper);
}

.cup-body {
  position: absolute;
  inset: 88px 36px 0;
  display: grid;
  place-items: center;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
  border: 5px solid var(--ink);
  background: linear-gradient(180deg, #ffcf54, #f06279 56%, #9b2f67);
}

.cup-body span {
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  transform: rotate(5deg);
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 440px);
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.menu-card {
  grid-column: span 4;
  min-height: 330px;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-card:nth-child(2),
.menu-card:nth-child(5) {
  transform: translateY(28px);
}

.card-mango { background: #ffe38d; }
.card-berry { background: #ffd6df; }
.card-green { background: #dbef91; }
.card-protein { background: #e6c694; }
.card-tropical { background: #ffc295; }
.card-bowl { background: #d9cef3; }

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 900;
}

.tag,
.price {
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

.drink-icon,
.bowl-icon {
  position: relative;
  width: 90px;
  height: 110px;
  margin-bottom: 20px;
  border: 3px solid var(--ink);
  border-radius: 12px 12px 26px 26px;
  background: var(--paper);
}

.drink-icon span {
  position: absolute;
  inset: 18px 14px 10px;
  border-radius: 10px 10px 22px 22px;
}

.drink-yellow span { background: var(--mango); }
.drink-pink span { background: var(--berry); }
.drink-green span { background: var(--melon); }
.drink-brown span { background: #8f5a37; }
.drink-orange span { background: var(--orange); }

.bowl-icon {
  height: 70px;
  border-radius: 12px 12px 38px 38px;
  background: #6f315d;
}

.bowl-fruit {
  position: absolute;
  top: -18px;
  left: 16px;
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--berry);
  box-shadow: 24px 2px 0 var(--mango), 48px -2px 0 var(--lime);
}

.menu-card p {
  color: rgba(23, 49, 40, 0.72);
  font-weight: 700;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature {
  position: relative;
  min-height: 360px;
  padding: clamp(36px, 5vw, 70px);
  overflow: hidden;
}

.feature-dark {
  color: var(--cream);
  background: var(--ink);
}

.feature-pink {
  background: #ffd9e2;
}

.feature p:not(.eyebrow) {
  max-width: 410px;
}

.feature a {
  font-weight: 900;
}

.feature-fruit {
  right: -42px;
  bottom: -70px;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  border: 5px solid currentColor;
}

.feature-cup {
  right: 26px;
  bottom: -36px;
  width: 150px;
  height: 220px;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  background: linear-gradient(var(--berry), #71395b);
  border: 5px solid var(--ink);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.story-art {
  position: relative;
  min-height: 360px;
}

.story-circle {
  inset: 14% auto auto 8%;
  width: min(350px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  border: 4px solid var(--ink);
}

.story-leaf {
  position: absolute;
  right: 18%;
  top: 8%;
  width: 160px;
  height: 70px;
  border-radius: 100% 0 100% 0;
  background: var(--melon);
  border: 4px solid var(--ink);
  transform: rotate(28deg);
}

.story-art p {
  position: absolute;
  left: 18%;
  top: 35%;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.82;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(280px, 1.08fr);
  gap: 0;
  padding: 0 clamp(18px, 4vw, 56px) clamp(56px, 8vw, 110px);
}

.visit-card,
.map-placeholder {
  min-height: 460px;
  padding: clamp(28px, 5vw, 56px);
  border: 3px solid var(--ink);
}

.visit-card {
  background: var(--paper);
}

.visit-details {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

.visit-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.visit-details p {
  margin: 0;
  font-weight: 800;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
  background: #cbe4b4;
}

.map-road {
  position: absolute;
  width: 130%;
  height: 72px;
  background: var(--paper);
  border: 3px solid var(--ink);
}

.road-one {
  left: -15%;
  top: 42%;
  transform: rotate(18deg);
}

.road-two {
  left: -8%;
  top: 28%;
  transform: rotate(-34deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 50% 0;
  background: var(--berry);
  border: 4px solid var(--ink);
  color: var(--paper);
  rotate: -45deg;
}

.map-placeholder p {
  position: absolute;
  right: 22px;
  bottom: 18px;
  margin: 0;
  font-weight: 900;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 80px) clamp(18px, 4vw, 56px);
  background: var(--orange);
}

.contact-links {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: min(340px, 100%);
}

.contact-links a {
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--cream);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .hero,
  .section-heading,
  .story-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .menu-card {
    grid-column: span 6;
  }

  .split-feature,
  .contact-section {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 620px) {
  .notice-bar,
  footer {
    flex-direction: column;
  }

  .hero-art {
    min-height: 360px;
  }

  .sun {
    width: 230px;
  }

  .smoothie-cup {
    width: 230px;
    height: 318px;
  }

  .menu-card {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .menu-card:nth-child(2),
  .menu-card:nth-child(5) {
    transform: none;
  }

  .visit-card,
  .map-placeholder {
    min-height: 360px;
  }
}
