@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --green-950: #062d22;
  --green-900: #0b3d2e;
  --green-800: #11563d;
  --green-600: #18a660;
  --green-500: #35c878;
  --lime: #b7e85a;
  --white: #ffffff;
  --soft-white: rgba(255,255,255,.86);
  --glass: rgba(255,255,255,.10);
  --glass-border: rgba(255,255,255,.17);
  --shadow: 0 18px 50px rgba(0,0,0,.20);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  background: var(--green-950);
}

body {
  min-height: 100svh;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(183,232,90,.16), transparent 28%),
    radial-gradient(circle at 88% 85%, rgba(53,200,120,.20), transparent 35%),
    linear-gradient(145deg, #062d22 0%, #0b4934 55%, #0d362a 100%);
  overflow-x: hidden;
  display: grid;
  place-items: center;
  position: relative;
}

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

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
  animation: float 9s ease-in-out infinite;
}

.b1 {
  width: 180px;
  height: 180px;
  top: -70px;
  left: -55px;
}

.b2 {
  width: 125px;
  height: 125px;
  right: -28px;
  top: 19%;
  animation-delay: -2s;
}

.b3 {
  width: 95px;
  height: 95px;
  left: 7%;
  bottom: 5%;
  animation-delay: -5s;
}

.b4 {
  width: 210px;
  height: 210px;
  right: -115px;
  bottom: -80px;
  animation-delay: -7s;
}

.recycle-mark {
  position: absolute;
  color: rgba(255,255,255,.035);
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 1;
  user-select: none;
  animation: rotateSoft 26s linear infinite;
}

.r1 {
  left: 4%;
  top: 33%;
}

.r2 {
  right: 7%;
  top: 3%;
  animation-direction: reverse;
}

.r3 {
  right: 12%;
  bottom: 4%;
  font-size: clamp(4rem, 11vw, 7rem);
}

.landing {
  width: min(100% - 24px, 680px);
  min-height: min(100svh, 860px);
  position: relative;
  z-index: 1;
  padding:
    max(18px, env(safe-area-inset-top))
    2px
    max(18px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: left;
}

.logo-circle {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--green-950);
  background: linear-gradient(145deg, var(--lime), #57d782);
  box-shadow: 0 10px 30px rgba(183,232,90,.18);
  transform: rotate(-4deg);
}

.eyebrow {
  margin-bottom: 2px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--lime);
}

h1 {
  font-size: clamp(1.85rem, 7vw, 3rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

h1 span {
  color: var(--lime);
}

.message,
.schedule {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.message {
  border-radius: 22px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.message > i {
  color: var(--lime);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.message p {
  font-size: .89rem;
  line-height: 1.45;
  color: var(--soft-white);
}

.message strong {
  color: var(--white);
}

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

.main-action {
  min-height: 74px;
  border-radius: 21px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  transition: transform .22s ease, filter .22s ease;
}

.main-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.18), transparent 70%);
  transform: translateX(-125%);
  transition: transform .55s ease;
}

.main-action:hover::after,
.main-action:focus-visible::after {
  transform: translateX(125%);
}

.main-action:hover,
.main-action:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.main-action.map {
  background: linear-gradient(135deg, #c7f56e, #73dc72);
  color: #0b3828;
}

.action-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.30);
  font-size: 1.25rem;
}

.action-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.action-text small {
  font-size: .66rem;
  font-weight: 700;
  opacity: .74;
}

.action-text strong {
  margin-top: 2px;
  font-size: 1rem;
}

.schedule {
  border-radius: 22px;
  padding: 13px 15px;
}

.schedule-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.hour-row {
  min-width: 0;
  border-radius: 14px;
  padding: 9px 7px;
  text-align: center;
  background: rgba(255,255,255,.065);
}

.hour-row span {
  display: block;
  margin-bottom: 4px;
  font-size: .65rem;
  color: rgba(255,255,255,.68);
  font-weight: 600;
}

.hour-row strong {
  display: block;
  font-size: .72rem;
  line-height: 1.15;
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.social {
  min-height: 58px;
  border-radius: 17px;
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 22px rgba(0,0,0,.13);
  transition: transform .2s ease, filter .2s ease;
}

.social i {
  font-size: 1.18rem;
}

.social span {
  font-size: .54rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  word-break: break-word;
}

.social:hover,
.social:focus-visible {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.tiktok {
  background: #101010;
}

.footer-text {
  text-align: center;
  font-size: .67rem;
  line-height: 1.3;
  color: rgba(255,255,255,.58);
}

.footer-text i {
  margin-right: 4px;
  color: var(--lime);
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0,0,0);
  }
  50% {
    transform: translate3d(10px,-18px,0);
  }
}

@keyframes rotateSoft {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 420px) {
  .landing {
    width: min(100% - 20px, 680px);
    gap: 9px;
  }

  .logo-circle {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 17px;
    font-size: 1.55rem;
  }

  .eyebrow {
    font-size: .61rem;
  }

  h1 {
    font-size: clamp(1.62rem, 8vw, 2rem);
  }

  .message {
    padding: 11px 13px;
    border-radius: 18px;
  }

  .message p {
    font-size: .78rem;
  }

  .main-action {
    min-height: 64px;
    padding: 9px 12px;
    border-radius: 18px;
  }

  .action-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .action-text small {
    font-size: .58rem;
  }

  .action-text strong {
    font-size: .84rem;
  }

  .schedule {
    padding: 11px 12px;
    border-radius: 18px;
  }

  .schedule-title {
    margin-bottom: 7px;
    font-size: .69rem;
  }

  .hour-row {
    padding: 7px 4px;
  }

  .hour-row span {
    font-size: .56rem;
  }

  .hour-row strong {
    font-size: .62rem;
  }

  .social {
    min-height: 52px;
    border-radius: 15px;
  }

  .social span {
    font-size: .48rem;
  }

  .footer-text {
    font-size: .61rem;
  }
}

@media (max-height: 670px) {
  .landing {
    gap: 7px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    gap: 9px;
  }

  .logo-circle {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 1.35rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  .eyebrow {
    font-size: .58rem;
  }

  .message {
    padding: 9px 12px;
  }

  .message p {
    font-size: .73rem;
    line-height: 1.3;
  }

  .main-action {
    min-height: 58px;
  }

  .schedule {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .social {
    min-height: 46px;
  }

  .footer-text {
    display: none;
  }
}

@media (min-width: 760px) {
  .landing {
    width: min(100% - 40px, 720px);
    gap: 16px;
  }

  .message {
    padding: 17px 19px;
  }

  .message p {
    font-size: .96rem;
  }

  .main-action {
    min-height: 82px;
  }

  .schedule {
    padding: 16px 18px;
  }

  .hour-row strong {
    font-size: .82rem;
  }

  .social {
    min-height: 62px;
  }

  .social span {
    font-size: .6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
