:root {
  --forest: #043d2a;
  --forest-dark: #02261b;
  --forest-light: #0b6042;
  --gold: #f6b916;
  --gold-soft: #ffd86b;
  --cream: #fffaf0;
  --ink: #12382b;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--forest-dark);
}

body {
  margin: 0;
  background: var(--forest-dark);
  color: var(--cream);
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.construction-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.25rem, 3vw, 2.75rem) clamp(1.25rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 74% 46%, rgba(30, 129, 88, 0.72) 0, rgba(4, 61, 42, 0.2) 31%, transparent 53%),
    linear-gradient(135deg, #02271c 0%, #043d2a 48%, #075338 100%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  top: -24rem;
  right: 6%;
  border: 1px solid rgba(255, 216, 107, 0.45);
  box-shadow: 0 0 120px rgba(246, 185, 22, 0.18);
}

.ambient-two {
  width: 25rem;
  height: 25rem;
  left: -16rem;
  bottom: -14rem;
  background: rgba(246, 185, 22, 0.16);
  filter: blur(50px);
}

.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  width: 1.15rem;
  height: 1.7rem;
  display: block;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  transform: rotate(-34deg);
  box-shadow: 0 0 22px rgba(246, 185, 22, 0.3);
}

.domain {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

.hero {
  width: min(100%, 90rem);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 0.84fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(2.75rem, 7vh, 6.5rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 43rem;
  animation: rise 850ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.status-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 216, 107, 0.3);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.07);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(246, 185, 22, 0.5);
  animation: pulse 2.2s infinite;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: clamp(0.75rem, 1vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.5vw, 7.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

h1 span {
  display: block;
  margin-top: 0.18em;
  color: var(--gold);
  font-style: italic;
}

.intro {
  max-width: 35rem;
  margin: 2.2rem 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.8;
}

.progress-wrap {
  max-width: 35rem;
  margin-top: 2.2rem;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.progress-copy span:last-child {
  color: var(--gold-soft);
}

.progress-track {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.15);
}

.progress-track span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 18px rgba(246, 185, 22, 0.6);
  transform-origin: left;
  animation: grow 1.4s 400ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.contact-link {
  width: max-content;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 216, 107, 0.36);
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-link strong {
  color: var(--cream);
  font-weight: 550;
}

.contact-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold-soft);
  outline: none;
}

.contact-link:hover .contact-arrow,
.contact-link:focus-visible .contact-arrow {
  transform: translate(2px, -2px);
}

.brand-stage {
  position: relative;
  width: min(100%, 33rem);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  animation: appear 1s 120ms ease both;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 107, 0.24);
}

.orbit-one {
  inset: 0;
  animation: spin 28s linear infinite;
}

.orbit-one::before,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 25px rgba(246, 185, 22, 0.75);
}

.orbit-one::before {
  top: 14%;
  right: 14%;
}

.orbit-two {
  inset: 6%;
  border-style: dashed;
  border-color: rgba(255, 250, 240, 0.16);
  animation: spin-reverse 36s linear infinite;
}

.orbit-two::after {
  bottom: 7%;
  left: 26%;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--cream);
}

.logo-card {
  position: relative;
  z-index: 2;
  width: 76%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2vw, 1.6rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 2.5rem;
  background: #fffaf2;
  box-shadow:
    0 3rem 6rem rgba(0, 16, 10, 0.42),
    0 0 0 0.65rem rgba(255, 255, 255, 0.055),
    inset 0 0 3rem rgba(246, 185, 22, 0.08);
  transform: rotate(-2deg);
}

.logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 70% 15%, rgba(246, 185, 22, 0.2), transparent 44%);
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 1.5rem;
}

.quality-seal {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 13%;
  width: 5.2rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.05rem;
  border: 1px solid rgba(4, 61, 42, 0.2);
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(0, 24, 15, 0.32);
  transform: rotate(7deg);
}

.quality-seal span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.quality-seal small {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 250, 240, 0.12);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes appear {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(246, 185, 22, 0.55); }
  65%, 100% { box-shadow: 0 0 0 0.65rem rgba(246, 185, 22, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .brand-stage {
    width: min(90vw, 29rem);
  }

  h1 {
    font-size: clamp(3.8rem, 14vw, 7rem);
  }
}

@media (max-width: 560px) {
  .construction-shell {
    min-height: 100svh;
    padding: 1.15rem;
  }

  .site-header {
    padding-bottom: 1rem;
  }

  .domain {
    display: none;
  }

  .status-pill {
    margin-bottom: 1.8rem;
    font-size: 0.63rem;
  }

  .eyebrow {
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
    line-height: 0.87;
  }

  .intro {
    margin-top: 1.6rem;
    line-height: 1.65;
  }

  .contact-link {
    width: 100%;
    grid-template-columns: auto 1fr auto;
    font-size: 0.72rem;
  }

  .contact-link strong {
    overflow-wrap: anywhere;
  }

  .brand-stage {
    width: min(88vw, 23rem);
  }

  .logo-card {
    width: 78%;
    border-radius: 1.8rem;
  }

  .quality-seal {
    width: 4.5rem;
    right: 0;
  }

  .site-footer {
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .footer-line {
    display: none;
  }
}

@media (max-height: 730px) and (min-width: 901px) {
  .hero {
    padding: 2.1rem 0;
  }

  .status-pill {
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(4rem, 6.7vw, 6.7rem);
  }

  .intro,
  .progress-wrap {
    margin-top: 1.35rem;
  }

  .contact-link {
    margin-top: 1.2rem;
  }

  .brand-stage {
    width: min(65vh, 30rem);
  }
}

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