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

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: linear-gradient(135deg, #151D13 0%, #416034 100%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #d2b988;
  padding: 2rem 1rem;
}

/* Small phone screens: use vertical gradient so full gradient is visible */
@media (max-width: 480px) {
  body {
    background: linear-gradient(180deg, #151D13 0%, #416034 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* Wrapper sets visual size; logo renders at 2x inside then scales down for sharper SVG filter (drop-shadow) rendering */
.logo-wrap {
  width: clamp(180px, 42vw, 340px);
  aspect-ratio: 1126 / 845;
  margin-bottom: 2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.hero .logo {
  display: block;
  width: 200%;
  height: auto;
  max-width: none;
  transform: scale(0.5);
  transform-origin: top left;
}

@media (max-width: 480px) {
  .logo-wrap {
    width: clamp(220px, 58vw, 340px);
  }
}

.address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d2b988;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}

.address:hover {
  opacity: 0.85;
}

.pin-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.menu-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid #d2b988;
  border-radius: 9999px;
  background: #d2b988;
  color: #151D13;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.menu-btn:hover {
  background: rgba(210, 185, 136, 0.85);
  color: #151D13;
}

.stats {
  position: relative;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d2b988, transparent);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.stat-number {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  gap: 0.01em;
}

.num-char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.45em);
  animation: number-rise 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes number-rise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(0.45em);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.stat-label {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.stat-label-anim {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(0.35em);
  animation: label-rise 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes label-rise {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(0.35em);
  }
  to {
    opacity: 0.9;
    filter: blur(0);
    transform: translateY(0);
  }
}
