:root {
  --color-bg: #f7f5ef;
  --color-bg-soft: #ebe6dc;
  --color-text: #111111;
  --color-muted: #5f5a52;
  --color-border: rgba(17, 17, 17, 0.12);
  --color-card: rgba(255, 255, 255, 0.72);
  --color-accent: #c78b45;
  --color-accent-dark: #9b652b;

  --font-main: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1380px;
  --radius-large: 32px;
  --radius-medium: 18px;

  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.10);
  --shadow-product: 0 34px 80px rgba(0, 0, 0, 0.20);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--color-text);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.95), transparent 36%),
    linear-gradient(135deg, #fbfaf6 0%, var(--color-bg) 48%, #ede7dd 100%);
}

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

a {
  color: inherit;
}

.landing-page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26)),
    radial-gradient(circle at top right, rgba(199, 139, 69, 0.16), transparent 34%);
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.hero__background::before,
.hero__background::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.7;
}

.hero__background::before {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: -110px;
  background: rgba(199, 139, 69, 0.12);
}

.hero__background::after {
  width: 240px;
  height: 240px;
  right: 10%;
  top: 8%;
  background: rgba(0, 0, 0, 0.045);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container-width));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  grid-template-areas:
    "header header"
    "text visual"
    "contact visual";
  gap: 32px 56px;
  align-items: center;
}

.hero__header {
  grid-area: header;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.logo {
  width: min(100%, 580px);
  display: block;
}

.logo__image {
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}

.hero__eyebrow {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.loading {
  width: 178px;
  height: 34px;
  padding: 4px;
  border: 3px solid var(--color-text);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.loading__bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--color-text) 0 14px,
      transparent 14px 21px
    );
  background-size: 42px 100%;
  animation: loading-slide 1s linear infinite;
}

@keyframes loading-slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 42px 0;
  }
}

.hero__text {
  grid-area: text;
  align-self: end;
}

.hero__text h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(2.35rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.020em;
  font-weight: 800;
}

.hero__intro {
  margin: 24px 0 0;
  max-width: 610px;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.6;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--color-text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button--primary:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.button--secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--color-border);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.hero__visual {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 650px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 3%;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(18px);
  z-index: -1;
}

.hero__product {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-product));
  transform: translateY(4px);
  animation: product-float 5.5s ease-in-out infinite;
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(4px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.contact-card {
  grid-area: contact;
  width: min(100%, 480px);
  padding: 22px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-card);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.contact-card__label {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-dark);
}

.contact-card__link,
.contact-card__phone {
  display: block;
  width: fit-content;
  text-decoration: none;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.contact-card__link:hover,
.contact-card__phone:hover {
  color: var(--color-accent-dark);
}

.contact-card__phone {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero {
    padding: 20px;
    align-items: flex-start;
  }

  .hero__background {
    inset: 10px;
    border-radius: 24px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "visual"
      "text"
      "contact";
    gap: 28px;
    padding: 26px 10px;
    text-align: center;
  }

  .hero__text,
  .contact-card {
    justify-self: center;
  }

  .hero__text h1,
  .hero__intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 560px);
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 14px;
  }
  
  .logo {
  width: min(80%, 580px);
  display: block;
	}

  .hero__content {
    gap: 22px;
  }

  .hero__eyebrow {
    font-size: 1.08rem;
  }

  .loading {
    width: 152px;
    height: 30px;
    border-width: 2px;
  }

  .hero__text h1 {
    font-size: clamp(2.35rem, 5vw, 4.2rem);
  }

  .hero__intro {
    font-size: 1rem;
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card__link,
  .contact-card__phone {
    font-size: 1.35rem;
  }
}

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