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

:root {
  --green-deep:   #1a2e1c;
  --green-mid:    #2d4a30;
  --green-sage:   #7a9e7e;
  --cream:        #f0ead8;
  --cream-dim:    #c8bfa8;
  --gold:         #b89a5a;
  --gold-light:   #d4b87a;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--green-deep);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 10;
}

/* Radial glow from center */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(45,74,48,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Main content */
.wrap {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.leaf-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.8rem;
  opacity: 0.85;
  animation: fadeUp 1.2s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.company-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--cream);
  animation: fadeUp 1.2s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.company-name span {
  display: block;
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35em;
}

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2.2rem auto;
  animation: fadeUp 1.2s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.under-construction {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeUp 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.message {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.45rem);
  color: var(--cream-dim);
  margin-top: 1.1rem;
  max-width: 420px;
  line-height: 1.6;
  animation: fadeUp 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-wrap {
  margin-top: 2.4rem;
  animation: fadeUp 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 0.5rem;
}

.phone-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s ease;
}

.phone-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-link:hover { color: var(--gold-light); }
.phone-link:hover::after { transform: scaleX(1); }

.footer-note {
  position: fixed;
  bottom: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.25);
  z-index: 5;
  animation: fadeUp 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
