:root {
  --night: #071108;
  --green: #103c16;
  --leaf: #5c8f16;
  --yellow: #f8a91b;
  --yellow-deep: #f19912;
  --cream: #fff9ed;
  --charcoal: #11110f;
  --muted: #c9c4b6;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--night);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: var(--font-body);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--night);
}

.skip-link:focus {
  transform: none;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.hero {
  isolation: isolate;
  position: relative;
  display: grid;
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(115deg, rgba(7, 17, 8, 0.98) 5%, rgba(7, 17, 8, 0.92) 53%, rgba(7, 17, 8, 0.58)),
    url("./cardapio-padrao-garden/assets/hero/garden-studio-bg.webp") center / cover no-repeat;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
  background-image:
    linear-gradient(45deg, transparent 47%, var(--yellow) 48%, var(--yellow) 52%, transparent 53%);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 550px);
  padding: 36px 24px 48px;
}

.brand-logo {
  width: 96px;
  height: 96px;
  padding: 4px;
  object-fit: contain;
  border: 5px solid var(--cream);
  border-radius: 8px;
  background: white;
}

.eyebrow {
  margin: 30px 0 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 480px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 84px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.intro {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.action-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 12px 16px;
  border: 2px solid rgba(255, 249, 237, 0.24);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.08);
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.action-card--primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--charcoal);
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: rgba(248, 169, 27, 0.14);
}

.action-card--primary:hover {
  background: #ffb72d;
}

.action-card:active {
  transform: scale(0.99);
}

.action-card:focus-visible,
.viewer__back:focus-visible,
.viewer__external:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

.action-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 249, 237, 0.12);
}

.action-card--primary .action-card__icon {
  background: rgba(17, 17, 15, 0.1);
}

.action-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.action-card__copy {
  display: grid;
  gap: 4px;
}

.action-card__copy strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.action-card__copy small {
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.76;
}

.action-card__arrow {
  font-size: 28px;
  transition: transform 180ms ease;
}

.action-card:hover .action-card__arrow {
  transform: translateX(3px);
}

.service-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.service-note__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6ecb63;
  box-shadow: 0 0 0 4px rgba(110, 203, 99, 0.12);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.quick-info__card {
  min-width: 0;
  padding: 14px 13px;
  border: 1px solid rgba(255, 249, 237, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 8, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 249, 237, 0.08);
}

.quick-info__label {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-info__card strong {
  display: block;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.2;
}

.quick-info__card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(248, 169, 27, 0.38);
  border-radius: 999px;
  background: rgba(248, 169, 27, 0.1);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.support-links a:hover {
  border-color: var(--yellow);
  background: rgba(248, 169, 27, 0.18);
}

.updates {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  padding: 34px 24px 38px;
  background:
    radial-gradient(circle at 8% 0%, rgba(248, 169, 27, 0.18), transparent 28%),
    linear-gradient(135deg, #09200d, #071108 54%, #0e2d12);
  color: var(--cream);
}

.updates::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, transparent 47%, var(--yellow) 48%, var(--yellow) 52%, transparent 53%);
  background-size: 38px 38px;
}

.updates__heading,
.updates__grid {
  position: relative;
  z-index: 1;
}

.updates__heading {
  align-self: center;
}

.updates__heading .eyebrow {
  margin-top: 0;
}

.updates__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

.event-card {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(255, 249, 237, 0.18);
  border-radius: 10px;
  background: rgba(255, 249, 237, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 237, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.18);
}

.event-card--highlight {
  border-color: rgba(248, 169, 27, 0.65);
  background: linear-gradient(145deg, rgba(248, 169, 27, 0.22), rgba(255, 249, 237, 0.08));
}

.event-card--cashback {
  background: linear-gradient(145deg, rgba(92, 143, 22, 0.28), rgba(255, 249, 237, 0.08));
}

.event-card__date {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(248, 169, 27, 0.14);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.event-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero__food {
  pointer-events: none;
  position: absolute;
  top: 34px;
  right: -62px;
  z-index: 1;
  display: grid;
  width: 270px;
  height: 205px;
  align-items: end;
  justify-items: center;
  overflow: hidden;
}

.hero__food img {
  z-index: 2;
  width: 250px;
  max-height: 205px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 18px 15px rgba(0, 0, 0, 0.48));
  transform: translateY(8px);
}

.hero__sun {
  position: absolute;
  right: 8px;
  bottom: 2px;
  width: 180px;
  aspect-ratio: 1;
  border: 14px solid rgba(248, 169, 27, 0.2);
  border-radius: 50%;
  background: var(--yellow);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  min-height: 68px;
  padding: 22px 24px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 14px;
}

.footer strong {
  text-transform: uppercase;
}

.footer span,
.footer a {
  color: var(--charcoal);
  text-decoration: none;
}

.viewer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  visibility: hidden;
  transform: translateY(12px);
  opacity: 0;
  background: var(--cream);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms;
}

.viewer.is-open {
  visibility: visible;
  transform: none;
  opacity: 1;
}

.viewer__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px 16px;
  background: var(--night);
  color: var(--cream);
}

.viewer__bar strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.viewer__back,
.viewer__external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--cream);
  text-decoration: none;
}

.viewer__back {
  justify-self: start;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.viewer__external {
  justify-self: end;
}

.viewer__stage {
  position: relative;
  min-height: 0;
  background: #ebe6db;
}

.viewer__stage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.viewer__loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--green);
  font-weight: 700;
}

.viewer__loading span {
  width: 36px;
  height: 36px;
  border: 4px solid rgba(16, 60, 22, 0.16);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.viewer__loading.is-hidden {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(600px, 1.08fr) minmax(420px, 0.92fr);
  }

  .hero__content {
    justify-content: center;
    width: min(100%, 680px);
    padding: 40px 64px 44px;
  }

  .hero__content h1 {
    max-width: 570px;
    font-size: clamp(66px, 6.2vw, 82px);
  }

  .hero__food {
    position: absolute;
    right: clamp(-150px, -8vw, -92px);
    bottom: clamp(-22px, -2vh, 0px);
    z-index: 1;
    display: block;
    overflow: visible;
    width: min(59vw, 900px);
    min-height: 0;
    height: min(72vh, 680px);
  }

  .hero__food img {
    position: absolute;
    right: clamp(70px, 8vw, 150px);
    bottom: clamp(18px, 3vh, 38px);
    z-index: 2;
    width: min(56vw, 840px);
    max-height: min(78vh, 760px);
    object-fit: contain;
    object-position: center bottom;
    filter: saturate(1.06) contrast(1.04) drop-shadow(0 32px 24px rgba(0, 0, 0, 0.5));
    transform: translateY(2%);
  }

  .hero__sun {
    position: absolute;
    right: clamp(12px, 3vw, 56px);
    bottom: clamp(-76px, -9vh, -38px);
    width: min(45vw, 660px);
    aspect-ratio: 1;
    border: 36px solid rgba(248, 169, 27, 0.25);
    border-radius: 50%;
    background: var(--yellow);
  }

  .footer {
    padding-inline: 64px;
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .hero__food {
    right: -180px;
    width: 62vw;
    height: min(70vh, 620px);
  }

  .hero__food img {
    right: 100px;
    width: min(46vw, 560px);
    max-height: min(74vh, 620px);
  }

  .hero__sun {
    right: 44px;
    width: min(48vw, 560px);
  }

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

@media (max-width: 620px) {
  .hero__content {
    min-height: calc(100svh - 68px);
    justify-content: flex-start;
    padding-top: 34px;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .eyebrow {
    margin-top: 42px;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(49px, 14vw, 61px);
  }

  .intro {
    max-width: 330px;
    margin-top: 18px;
  }

  .actions {
    margin-top: 24px;
  }

  .quick-info {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .quick-info__card {
    padding: 11px 12px;
  }

  .quick-info__card strong {
    font-size: 14px;
  }

  .quick-info__card small {
    font-size: 11px;
  }

  .viewer__bar {
    grid-template-columns: 1fr auto;
  }

  .viewer__bar strong {
    display: none;
  }

  .viewer__external-text {
    display: none;
  }

  .viewer__bar {
    min-height: 56px;
    padding-inline: 12px;
  }

  .viewer__back {
    font-size: 14px;
  }

  .updates {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 18px 34px;
  }

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

  .event-card {
    min-height: auto;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 355px) {
  .hero__food {
    top: 26px;
    right: -92px;
    width: 220px;
    height: 166px;
  }

  .hero__food img {
    width: 198px;
    max-height: 166px;
  }

  .hero__sun {
    width: 145px;
    border-width: 11px;
  }

  .action-card {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 12px;
  }

  .action-card__icon {
    width: 44px;
    height: 44px;
  }

  .action-card__copy strong {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
