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

:root {
  --green-950: #062d22;
  --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: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  padding: 6px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.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; }
.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 1fr;
  gap: 10px;
}

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

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

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

.main-action.website {
  background: linear-gradient(135deg, #ffffff, #dff5e8);
  color: #0b3828;
}

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

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

.action-text small {
  font-size: .64rem;
  font-weight: 700;
  opacity: .74;
  white-space: nowrap;
}

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

.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 {
  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:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); }
.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;
}

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

.footer-text {
  text-align: center;
  font-size: .67rem;
  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: 60px; height: 60px; flex-basis: 60px; border-radius: 17px; padding: 5px; }
  .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; border-radius: 18px; gap: 7px; }
  .action-icon { width: 36px; height: 36px; border-radius: 12px; font-size: 1rem; }
  .action-text small { display: none; }
  .action-text strong { font-size: .76rem; }
  .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-width: 350px) {
  .actions { gap: 7px; }
  .main-action { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .action-text strong { font-size: .68rem; }
  .main-action > i { display: none; }
}

@media (max-height: 670px) {
  .landing { gap: 7px; padding-top: 8px; padding-bottom: 8px; }
  .logo-circle { width: 52px; height: 52px; flex-basis: 52px; padding: 4px; }
  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 (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
