:root {
  --teal: #05a7a7;
  --teal-dark: #08716f;
  --pink: #ec3f8c;
  --mango: #ffc447;
  --coffee: #4b2b1f;
  --cream: #fff6df;
  --cream-soft: #fffbef;
  --charcoal: #182322;
  --text: #243130;
  --muted: #64706e;
  --white: #ffffff;
  --border: rgba(24, 35, 34, 0.12);
  --whatsapp: #25d366;
  --shadow: 0 18px 42px rgba(28, 32, 31, 0.14);
  --radius: 8px;
  --container: 1160px;
  --header-height: 104px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--cream-soft);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, svg, iframe { max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section { padding: 82px 0; }
.section--cream { background: var(--cream); }
.section--dark { color: var(--white); background: var(--charcoal); }

.section-kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.15rem, 4.7vw, 4.45rem);
  line-height: 1.03;
}

h2 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.16;
}

.section--dark h2,
.cta-strip h2 { color: var(--white); }

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  background: rgba(255, 251, 239, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: var(--teal);
}

.nav-whatsapp {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--whatsapp);
}

.nav-whatsapp:hover { transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  padding: 74px 0 58px;
  background:
    linear-gradient(90deg, rgba(24, 35, 34, 0.88) 0%, rgba(24, 35, 34, 0.66) 48%, rgba(24, 35, 34, 0.18) 100%),
    url("img/generated/hidden-monkey-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  background: linear-gradient(90deg, var(--teal), var(--mango), var(--pink));
}

.hero__content { position: relative; z-index: 1; }

.hero .section-kicker {
  color: var(--mango);
  font-size: 0.9rem;
}

.hero__text {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.hero__actions,
.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--charcoal);
  background: var(--mango);
  box-shadow: 0 16px 34px rgba(255, 196, 71, 0.27);
}

.btn--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-features li,
.mini-tags span,
.pill-cloud span {
  border-radius: var(--radius);
  font-weight: 800;
}

.hero-features li {
  color: var(--white);
  padding: 10px 12px;
  background: rgba(5, 167, 167, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.split--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }

.about p,
.feature-section p,
.cold-section p {
  color: var(--muted);
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  pointer-events: none;
}

.media-card img {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.media-card--tilt {
  transform: rotate(1deg);
  border: 8px solid var(--mango);
}

.mini-tags,
.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-tags span {
  padding: 9px 12px;
  color: var(--teal-dark);
  background: rgba(5, 167, 167, 0.12);
}

.card-grid,
.advantage-grid,
.catalog-grid,
.gallery-grid,
.contact-panels {
  display: grid;
  gap: 18px;
}

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.flavor-card,
.advantage-grid article,
.catalog-grid article,
.contact-panels article,
.product-list article,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 35, 34, 0.08);
}

.flavor-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
}

.flavor-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  border-radius: 36% 64% 45% 55%;
  background: rgba(236, 63, 140, 0.12);
}

.flavor-card h3,
.advantage-grid h3,
.product-list h3,
.catalog-grid h3 {
  margin: 14px 0 8px;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.25;
}

.flavor-card p,
.advantage-grid p,
.product-list p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--pink));
}

.icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: radial-gradient(circle at 50% 70%, #000 0 48%, transparent 50%), linear-gradient(#000 0 0);
}

.cezve::before { border-radius: 45% 45% 55% 55%; mask: none; }
.waffle::before { mask: repeating-linear-gradient(45deg, #000 0 3px, transparent 3px 7px), repeating-linear-gradient(-45deg, #000 0 3px, transparent 3px 7px); }
.shake::before { clip-path: polygon(20% 0, 80% 0, 70% 100%, 30% 100%); mask: none; }
.frozen::before { border-radius: 50%; mask: none; }
.ice::before { clip-path: polygon(50% 0, 100% 45%, 68% 100%, 32% 100%, 0 45%); mask: none; }

.feature-section--pink {
  background:
    linear-gradient(135deg, rgba(236, 63, 140, 0.1), rgba(255, 196, 71, 0.16)),
    var(--cream-soft);
}

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

.product-list article { padding: 18px; }
.product-list h3 { margin-top: 0; }

.cold-section {
  background:
    linear-gradient(180deg, rgba(5, 167, 167, 0.1), rgba(255, 255, 255, 0)),
    var(--white);
}

.pill-cloud span {
  padding: 10px 12px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(255, 196, 71, 0.45);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 30px;
}

.product-hero p { color: rgba(255, 255, 255, 0.78); }

.product-hero img {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-grid article {
  padding: 22px;
  color: var(--text);
}

.catalog-grid h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.catalog-grid ul,
.footer-column ul,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-grid li {
  padding: 8px 0;
  border-top: 1px solid rgba(24, 35, 34, 0.08);
  color: var(--muted);
}

.advantage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.advantage-grid article { padding: 22px; border-top: 5px solid var(--teal); }
.advantage-grid article:nth-child(2) { border-top-color: var(--pink); }
.advantage-grid article:nth-child(3) { border-top-color: var(--mango); }
.advantage-grid article:nth-child(4) { border-top-color: var(--coffee); }

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(0deg, rgba(24, 35, 34, 0.88), transparent);
  text-align: left;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card { padding: 28px; }
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: grid; gap: 4px; color: var(--muted); }
.contact-list strong { color: var(--charcoal); }

.map-wrapper {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  color: var(--charcoal);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.active .faq-answer { max-height: 220px; }
.faq-item.active .faq-question span { background: var(--teal); }

.cta-strip {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 167, 167, 0.92), rgba(236, 63, 140, 0.82)),
    url("img/generated/hidden-monkey-hero.png") center / cover no-repeat;
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-strip p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-section { background: var(--cream-soft); }

.contact-panels {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-panels article {
  min-height: 130px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-panels strong {
  color: var(--pink);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-panels a {
  color: var(--teal-dark);
  font-weight: 900;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(24, 35, 34, 0.26);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-btn:hover { filter: brightness(1.06); transform: translateY(-2px); }
.floating-btn svg { width: 27px; height: 27px; }
.floating-btn--whatsapp { background: var(--whatsapp); }
.floating-btn--phone { background: var(--teal-dark); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(10, 16, 16, 0.88);
}

.lightbox.open { display: grid; }

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--mango);
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  padding: 54px 0 22px;
  color: var(--white);
  background: #111b1b;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--cream);
}

.footer-logo img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-column h3 {
  margin: 0 0 14px;
  color: var(--mango);
  font-size: 0.95rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-column a:hover { color: var(--mango); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
}

.digital-signature a { color: var(--mango); font-weight: 800; }

@media (max-width: 1120px) {
  .nav-link { padding-inline: 8px; font-size: 0.72rem; }
  .contact-panels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  :root { --header-height: 82px; }
  .logo img { width: 72px; height: 72px; }
  .menu-toggle { display: block; }
  .nav-whatsapp { display: none; }
  .nav-menu {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100vh - var(--header-height) - 28px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream-soft);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; justify-content: flex-start; font-size: 0.86rem; }
  .split,
  .split--reverse,
  .product-hero,
  .contact-grid,
  .cta-strip__inner { grid-template-columns: 1fr; }
  .card-grid,
  .catalog-grid,
  .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-strip__actions { margin-top: 0; }
}

@media (max-width: 640px) {
  :root { --header-height: 76px; }
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 58px 0; }
  .logo img { width: 64px; height: 64px; }
  .hero {
    min-height: 620px;
    align-items: end;
    padding: 78px 0 56px;
    background:
      linear-gradient(180deg, rgba(24, 35, 34, 0.2) 0%, rgba(24, 35, 34, 0.78) 43%, rgba(24, 35, 34, 0.92) 100%),
      url("img/generated/hidden-monkey-hero.png") center top / cover no-repeat;
  }
  h1 {
    max-width: 11ch;
    font-size: clamp(1.86rem, 8.4vw, 2.55rem);
    line-height: 1.08;
  }
  .hero__text { font-size: 1rem; }
  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-features li {
    padding: 9px 8px;
    min-width: 0;
    font-size: 0.92rem;
    line-height: 1.25;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .hero__actions,
  .cta-strip__actions { flex-direction: column; }
  .btn { width: 100%; }
  .card-grid,
  .catalog-grid,
  .advantage-grid,
  .gallery-grid,
  .contact-panels,
  .footer__grid { grid-template-columns: 1fr; }
  .media-card img { min-height: 260px; }
  .media-card--tilt { transform: none; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .map-wrapper,
  .map-wrapper iframe { min-height: 320px; }
  .contact-panels article { min-height: auto; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .lightbox { padding: 16px; }
}
