:root {
  --landing-bg: #f5f3e8;
  --landing-surface: rgba(255, 255, 255, 0.78);
  --landing-surface-strong: rgba(255, 255, 255, 0.92);
  --landing-border: rgba(44, 61, 40, 0.12);
  --landing-heading: #1e2e1d;
  --landing-text: #252a25;
  --landing-muted: rgba(37, 42, 37, 0.72);
  --landing-accent: #2c3d28;
  --landing-accent-soft: #e5ece2;
  --landing-shadow: 0 24px 80px rgba(39, 53, 37, 0.12);
  --landing-radius: 28px;
  --landing-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --landing-font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--landing-font-body);
  color: var(--landing-text);
  background:
    url("./assets/images/background.png") center / cover no-repeat fixed;
}

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

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

.landing {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 96px 32px 32px;
  display: grid;
  place-items: center;
}

.call-now {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(49, 71, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(39, 53, 37, 0.12);
  backdrop-filter: blur(10px);
}

.call-now__label {
  color: var(--landing-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.call-now__phone {
  color: var(--landing-accent);
  font-size: 1rem;
  font-weight: 700;
}

.landing__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.landing__glow--one {
  top: 10%;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(210, 228, 204, 0.8);
}

.landing__glow--two {
  right: -80px;
  bottom: 8%;
  width: 280px;
  height: 280px;
  background: rgba(233, 220, 199, 0.85);
}

.hero {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 48px 40px;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  background: linear-gradient(180deg, var(--landing-surface-strong), var(--landing-surface)); 
  box-shadow: var(--landing-shadow);
  text-align: center;
  backdrop-filter: blur(14px);
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--landing-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--landing-font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  color: var(--landing-heading);
}

.hero__logo {
  width: min(180px, 42vw);
  margin: 28px auto 26px;
}

.hero__status {
  margin: 0;
  color: var(--landing-text);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.65;
}

.hero__info {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  padding: 22px 20px;
  border: 1px solid rgba(49, 71, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--landing-muted);
}

.info-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--landing-text);
}

.instagram-link {
  margin: 26px auto 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(49, 71, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--landing-accent);
  box-shadow: 0 10px 28px rgba(39, 53, 37, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(39, 53, 37, 0.12);
}

.instagram-link__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.instagram-link__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.instagram-link__label {
  font-size: 0.98rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(39, 53, 37, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 52px rgba(39, 53, 37, 0.24);
}

.whatsapp-float img {
  width: 72px;
  height: 72px;
}

@media (min-width: 1024px) {
  .landing {
    padding: 128px max(24px, calc((100vw - 980px) / 2)) 48px;
  }

  .hero {
    width: min(100%, 980px);
    padding: 64px 72px 56px;
    border-radius: 32px;
  }

  .hero__logo {
    width: 210px;
    margin: 0 auto 24px;
  }

  h1 {
    font-size: clamp(4.4rem, 6vw, 6.4rem);
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .hero__status {
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1.35rem;
  }

  .hero__info {
    margin-top: 40px;
    gap: 22px;
  }

  .info-card {
    min-height: 100%;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.78);
  }

  .info-card h2 {
    margin-bottom: 14px;
  }

  .call-now {
    top: 28px;
    padding: 14px 22px;
  }

  .call-now__phone {
    font-size: 1.05rem;
  }

  .instagram-link {
    margin-top: 34px;
    padding: 14px 22px;
  }

  .whatsapp-float {
    right: 28px;
    bottom: 28px;
    width: 78px;
    height: 78px;
  }

  .whatsapp-float img {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 720px) {
  .landing {
    padding: 108px 20px 20px;
  }

  .hero {
    padding: 40px 24px 24px;
  }

  .call-now {
    top: 16px;
    width: calc(100% - 24px);
    justify-content: center;
    padding: 12px 16px;
  }

  .call-now__label,
  .call-now__phone {
    font-size: 0.9rem;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
  }

  .whatsapp-float img {
    width: 64px;
    height: 64px;
  }
}
