:root {
  --green: #405a2d;
  --green-dark: #2f4024;
  --text: #3f4338;
  --muted: #5f5f55;
  --cream: #f5ecdf;
  --glass: rgba(255, 255, 255, 0.58);
  --line: rgba(64, 90, 45, 0.16);
}

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

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

body {
  min-height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

.landing {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background:
    linear-gradient(90deg, rgba(246, 239, 229, 0.16), rgba(246, 239, 229, 0.62)),
    url("assets/background.png") center / cover no-repeat;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.72), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(255,255,255,0.48), transparent 30%);
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 248, 239, 0.08);
  backdrop-filter: saturate(105%);
}

.hero {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  text-align: center;
  padding-top: clamp(0px, 1vh, 18px);
  animation: entrance 1.1s ease both;
}

.logo {
  width: clamp(190px, 23vw, 300px);
  display: block;
  margin: 0 auto clamp(20px, 3.5vh, 36px);
  filter: drop-shadow(0 18px 28px rgba(45, 55, 33, 0.08));
}

.divider {
  width: 76px;
  height: 1px;
  margin: 0 auto clamp(22px, 3vh, 34px);
  background: var(--green);
  opacity: 0.55;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: clamp(0.16em, 0.8vw, 0.24em);
  color: var(--green-dark);
  font-size: clamp(42px, 7.4vw, 86px);
  line-height: 0.95;
  margin-bottom: clamp(18px, 2.7vh, 30px);
}

.subtitle {
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: clamp(10px, 1.8vh, 18px);
  text-wrap: balance;
}

.small-leaf {
  width: clamp(34px, 4vw, 54px);
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  margin: 0 auto clamp(18px, 3vh, 34px);
  display: block;
}

.values {
  width: min(100%, 680px);
  margin: 0 auto clamp(16px, 2.8vh, 28px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 22px;
  background: var(--glass);
  box-shadow:
    0 24px 70px rgba(47, 64, 36, 0.11),
    inset 0 1px 0 rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(112%);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
}

.value {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px) clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--line);
}

.value:last-child {
  border-right: none;
}

.value img {
  height: clamp(38px, 4.8vw, 58px);
  width: 74px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.value h2 {
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 6px;
}

.value p {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.42;
  color: var(--muted);
}

.notice {
  color: var(--green);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

@keyframes entrance {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .landing {
    align-items: start;
    padding-top: 24px;
    background-position: 43% center;
  }

  .hero {
    width: min(100%, 520px);
  }

  .logo {
    width: min(64vw, 230px);
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .values {
    grid-template-columns: 1fr;
    width: min(100%, 390px);
    border-radius: 20px;
  }

  .value {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    align-items: center;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
  }

  .value:last-child {
    border-bottom: none;
  }

  .value img {
    grid-row: 1 / span 2;
    width: 54px;
    height: 44px;
    margin: 0;
  }

  .value h2,
  .value p {
    margin: 0;
  }

  .notice {
    letter-spacing: 0.16em;
    line-height: 1.5;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .landing {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .logo {
    width: 210px;
    margin-bottom: 18px;
  }

  .divider {
    margin-bottom: 20px;
  }

  h1 {
    font-size: 58px;
    margin-bottom: 16px;
  }

  .subtitle {
    font-size: 18px;
  }

  .small-leaf {
    width: 34px;
    margin-bottom: 18px;
  }

  .value {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .value img {
    height: 40px;
  }
}
