:root {
  --green-950: #06251d;
  --green-900: #0b3529;
  --green-800: #124b39;
  --green-700: #176047;
  --cream: #f3ede0;
  --paper: #fbf9f4;
  --white: #ffffff;
  --ink: #11241d;
  --muted: #5d6b66;
  --gold: #b58b58;
  --line: rgba(11, 53, 41, 0.18);
  --light-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(6, 37, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--green-950);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - 4vw, 1460px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 5.6rem;
  align-items: center;
  padding: 0 4vw;
  background: rgba(251, 249, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.85rem;
}

.logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 50%;
}

.logo-crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.logo-crop--header {
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--line);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.075em;
}

.brand__text small {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 3.2rem);
  font-size: 0.9rem;
  font-weight: 750;
}

.primary-nav a,
.site-footer__links a {
  position: relative;
}

.primary-nav a::after,
.site-footer__links a::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.site-footer__links a:hover::after,
.site-footer__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-self: end;
  padding: 0.65rem 1.15rem;
  color: white;
  background: var(--green-900);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.45rem;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-700);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: calc(100svh - 7.6rem);
  margin-top: 2vw;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero__copy {
  display: flex;
  min-height: 44rem;
  padding: clamp(3rem, 6vw, 6.8rem);
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(181, 139, 88, 0.14), transparent 30%),
    var(--cream);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--gold {
  color: #d2b184;
}

.eyebrow--green {
  color: var(--green-800);
}

.hero h1,
.about h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.052em;
}

.hero h1 {
  max-width: 10ch;
  color: var(--green-950);
  font-size: clamp(3.8rem, 6.8vw, 7.5rem);
  line-height: 0.94;
}

.hero h1 em,
.contact h2 em {
  color: var(--green-700);
  font-weight: 400;
}

.hero__lead {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: #3e514a;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  margin-top: 2.35rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.45rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--solid {
  color: white;
  background: var(--green-900);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--green-700);
}

.button--outline {
  color: var(--green-900);
  background: transparent;
  border-color: rgba(11, 53, 41, 0.42);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: white;
  background: var(--green-900);
}

.hero__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 37rem;
  margin: auto 0 0;
  padding-top: 3rem;
  gap: 1.5rem;
}

.hero__details div {
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 53, 41, 0.26);
}

.hero__details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__details dd {
  margin: 0.42rem 0 0;
  font-size: 0.98rem;
  font-weight: 750;
}

.hero__visual {
  position: relative;
  min-height: 44rem;
  margin: 0;
  overflow: hidden;
  background: var(--green-900);
}

.hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  transition: transform 650ms ease;
}

.hero:hover .hero__visual > img {
  transform: scale(1.015);
}

.hero__visual::after {
  position: absolute;
  inset: 46% 0 0;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(6, 37, 29, 0.62));
  pointer-events: none;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  left: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.85rem;
  gap: 1rem;
}

.hero__visual figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
}

.hero__visual figcaption small {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
}

.brand-ribbon {
  margin-top: 2vw;
  overflow: hidden;
  color: white;
  background: var(--green-900);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-ribbon__track {
  display: flex;
  min-width: max-content;
  min-height: 4.2rem;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  gap: clamp(1.4rem, 4vw, 4.4rem);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-ribbon__track i {
  width: 0.38rem;
  height: 0.38rem;
  background: var(--gold);
  border-radius: 50%;
}

.about {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  color: white;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.about__brand {
  position: relative;
  display: flex;
  min-height: 42rem;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 50%, rgba(181, 139, 88, 0.25), transparent 42%),
    var(--green-950);
  border-right: 1px solid var(--light-line);
}

.about__brand > .eyebrow {
  position: absolute;
  top: clamp(2rem, 4vw, 3.4rem);
  left: clamp(2rem, 4vw, 3.4rem);
}

.logo-crop--feature {
  width: min(22rem, 78%);
  aspect-ratio: 1;
  border: 0.55rem solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}

.about__est {
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about__copy {
  display: flex;
  min-height: 42rem;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7.5rem);
  flex-direction: column;
}

.about h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.96;
}

.about__lead {
  max-width: 38rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.value-list {
  margin-top: 3.2rem;
  border-top: 1px solid var(--light-line);
}

.value-list article {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--light-line);
  gap: 1.2rem;
}

.value-list article > span {
  color: #d2b184;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.value-list h3 {
  margin: 0;
  font-size: 1.05rem;
}

.value-list p {
  max-width: 38rem;
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.game {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  color: white;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.game__intro {
  display: flex;
  min-height: 43rem;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5.5rem);
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 85%, rgba(181, 139, 88, 0.25), transparent 34%),
    var(--green-950);
  border-right: 1px solid var(--light-line);
}

.game h2 {
  max-width: 8ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.052em;
}

.game h2 em {
  color: #d2b184;
  font-weight: 400;
}

.game__intro > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.game__instructions {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-line);
  gap: 0.85rem 1.25rem;
}

.game__instructions span {
  color: #d2b184;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.game__instructions strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.game__play-area {
  display: flex;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.7rem);
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
}

.game__scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.game__scoreboard > div {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-right: 1px solid var(--line);
  gap: 0.7rem;
}

.game__scoreboard > div:last-child {
  border-right: 0;
}

.game__scoreboard span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.game__scoreboard strong {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.game__scoreboard strong span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.game__canvas-wrap {
  position: relative;
  min-height: 0;
  overflow: hidden;
  flex: 1;
  background: #eadcc6;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

#coffee-game {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 32rem;
  cursor: grab;
  touch-action: none;
}

#coffee-game:active {
  cursor: grabbing;
}

.game__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex-direction: column;
  text-align: center;
  background: rgba(243, 237, 224, 0.9);
  backdrop-filter: blur(7px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.game__overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.game__overlay > span {
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.game__overlay h3 {
  margin: 0.65rem 0 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.game__overlay p {
  max-width: 26rem;
  margin: 1rem 0 1.6rem;
  color: var(--muted);
}

.game__overlay .button {
  border: 0;
  cursor: pointer;
}

.game__status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.contact {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.contact__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: 3rem;
}

.contact h2 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  line-height: 0.94;
}

.contact__heading > p {
  max-width: 33rem;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  position: relative;
  min-height: 17rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card--address {
  color: white;
  background: var(--green-900);
}

.contact-card--social {
  background: var(--cream);
}

.contact-card__number {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  color: rgba(11, 53, 41, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.contact-card--address .contact-card__number {
  color: rgba(255, 255, 255, 0.48);
}

.contact-card > p {
  margin: 0 0 1.25rem;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.contact-card--address > p {
  color: #d2b184;
}

.contact-card h3 {
  max-width: 28rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.contact-card > a,
.contact-card__note {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-card > a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.18rem;
}

.contact-card > a:hover,
.contact-card > a:focus-visible {
  color: var(--gold);
}

.contact-card__note {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 4vw;
  color: white;
  background: var(--green-950);
  border-top: 1px solid var(--light-line);
  gap: 2rem 3rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-crop--footer {
  width: 4.4rem;
  height: 4.4rem;
}

.site-footer__brand div {
  display: flex;
  flex-direction: column;
}

.site-footer__brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.09em;
}

.site-footer__brand small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  font-size: 0.86rem;
  font-weight: 750;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid var(--light-line);
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  padding: 0.8rem 1.15rem;
  color: white;
  background: #137a50;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(6, 37, 29, 0.28);
  font-size: 0.88rem;
  font-weight: 850;
  gap: 0.55rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float span {
  color: #bff2d5;
  font-size: 0.72rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #0f6843;
  transform: translateY(-2px);
}

:focus-visible {
  outline: 3px solid #d0a66e;
  outline-offset: 4px;
}

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-content: center;
    justify-self: end;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    gap: 0.35rem;
  }

  .menu-toggle span {
    display: block;
    width: 1.2rem;
    height: 1px;
    background: var(--green-950);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 5.6rem;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100svh - 5.6rem);
    align-items: flex-start;
    padding: 2rem 4vw;
    flex-direction: column;
    color: white;
    background: var(--green-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 8vw, 4rem);
    font-weight: 400;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__copy {
    min-height: 40rem;
  }

  .hero__visual {
    min-height: 40rem;
  }

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

  .about__brand {
    min-height: 34rem;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .about__copy {
    min-height: auto;
  }

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

  .game__intro {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .contact__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 1.4rem, 1460px);
  }

  .site-header {
    min-height: 5rem;
    padding-inline: 0.8rem;
  }

  .logo-crop--header {
    width: 2.9rem;
    height: 2.9rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand__text strong {
    font-size: 0.8rem;
  }

  .brand__text small {
    font-size: 0.65rem;
    letter-spacing: 0.09em;
  }

  .primary-nav {
    top: 5rem;
    min-height: calc(100svh - 5rem);
  }

  .hero {
    margin-top: 0.7rem;
  }

  .hero__copy {
    min-height: auto;
    padding: 3.25rem 1.4rem 2.3rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero__lead {
    margin-top: 1.5rem;
  }

  .hero__actions {
    align-items: stretch;
    margin-top: 1.8rem;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__details {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    padding-top: 0;
    gap: 1rem;
  }

  .hero__visual {
    min-height: 34rem;
  }

  .hero__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual figcaption small {
    text-align: left;
  }

  .brand-ribbon {
    margin-top: 0.7rem;
  }

  .about {
    margin-top: 4rem;
  }

  .about__brand {
    min-height: 27rem;
    padding: 4rem 1.5rem 2rem;
  }

  .logo-crop--feature {
    width: min(16rem, 74vw);
  }

  .about__copy {
    padding: 3.5rem 1.4rem;
  }

  .about h2,
  .game h2,
  .contact h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .value-list {
    margin-top: 2.4rem;
  }

  .game {
    margin-top: 4rem;
  }

  .game__intro {
    padding: 3.5rem 1.4rem;
  }

  .game__play-area {
    padding: 0.7rem;
  }

  .game__scoreboard > div {
    min-height: 4rem;
    padding: 0.65rem 0.7rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    text-align: center;
  }

  .game__scoreboard span {
    font-size: 0.65rem;
  }

  .game__scoreboard strong {
    font-size: 1.2rem;
  }

  #coffee-game {
    min-height: 26rem;
  }

  .game__overlay {
    padding: 1.3rem;
  }

  .game__overlay h3 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .game__overlay .button {
    width: auto;
  }

  .contact {
    padding-block: 4.5rem;
  }

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

  .contact-card {
    min-height: 15rem;
    padding: 2rem 1.4rem;
  }

  .contact-card__number {
    top: 1.1rem;
    right: 1.2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.1rem 6rem;
  }

  .site-footer__links {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__copyright {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

.drinks {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #f4ede2;
}

.drinks__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.drinks__heading h2 {
  margin: 10px 0 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.drinks__heading h2 em { color: #a66c2e; font-weight: 400; }
.drinks__heading > p { max-width: 34rem; color: #586a64; line-height: 1.7; }

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

.drink-group {
  position: relative;
  min-height: 300px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(11, 53, 41, 0.12);
}

.drink-group--featured {
  grid-row: span 2;
  background: #0b3529;
  color: #fff;
}

.drink-group__number {
  display: block;
  margin-bottom: 30px;
  color: #b17b3d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.drink-group h3 {
  margin: 0 0 22px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.drink-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.drink-group li {
  padding: 10px 12px 10px 0;
  border-top: 1px solid rgba(11, 53, 41, 0.12);
  color: #304a42;
  font-size: 0.95rem;
}

.drink-group--featured li { border-color: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.84); }
.drink-group__note, .drinks__note { color: #66756f; font-size: 0.86rem; line-height: 1.55; }
.drinks__note { margin: 20px 0 0; }

@media (max-width: 760px) {
  .drinks { padding-top: 72px; padding-bottom: 72px; }
  .drinks__heading, .drinks__grid { grid-template-columns: 1fr; }
  .drinks__heading { gap: 20px; margin-bottom: 30px; }
  .drink-group--featured { grid-row: auto; }
  .drink-group { min-height: 0; padding: 24px; }
}

@media (max-width: 430px) {
  .drink-group ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
