:root {
  --font-body: "DM Sans";
  --font-display: "Manrope";
  --ink: #102c24;
  --cream: #f5f0e6;
  --paper: #fbf8f1;
  --orange: #f36f3e;
  --gold: #f8b84e;
  --sage: #a9c4aa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body), sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.coming-soon {
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 28px clamp(22px, 5vw, 76px) 24px;
  position: relative;
}

.coming-soon::before {
  background-image: linear-gradient(rgba(16, 44, 36, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 44, 36, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
  position: absolute;
  z-index: -3;
}

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

.ambient-one {
  background: var(--gold);
  height: 360px;
  right: -165px;
  top: -175px;
  width: 360px;
}

.ambient-two {
  background: var(--sage);
  bottom: -230px;
  height: 430px;
  left: -210px;
  width: 430px;
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.site-header {
  animation: fade-down 650ms ease-out both;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 11px 11px 11px 3px;
  color: var(--paper);
  display: flex;
  font-family: var(--font-display), sans-serif;
  font-size: 18px;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  letter-spacing: -4px;
  padding-right: 4px;
  position: relative;
  transform: rotate(-2deg);
  width: 46px;
}

.brand-mark::after {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 7px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display), sans-serif;
  line-height: 1;
}

.brand-name strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand-name span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 5px;
  text-transform: uppercase;
}

.status-pill {
  align-items: center;
  background: rgba(251, 248, 241, 0.72);
  border: 1px solid rgba(16, 44, 36, 0.18);
  border-radius: 999px;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.1em;
  padding: 10px 15px;
  text-transform: uppercase;
}

.status-pill span {
  animation: pulse 1.8s ease-in-out infinite;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243, 111, 62, 0.14);
  height: 7px;
  width: 7px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  margin: clamp(68px, 11vh, 126px) auto clamp(64px, 9vh, 108px);
  max-width: 1320px;
}

.hero-copy {
  animation: fade-up 700ms 100ms ease-out both;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--orange);
  height: 2px;
  width: 28px;
}

h1 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(74px, 10vw, 152px);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.76;
  margin: 0;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.intro {
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.6;
  margin: 38px 0 0;
  max-width: 580px;
}

.hero-art {
  animation: fade-up 700ms 220ms ease-out both;
  aspect-ratio: 1.02;
  background: var(--ink);
  border-radius: 34px 34px 34px 8px;
  box-shadow: 18px 18px 0 var(--gold);
  min-height: 420px;
  overflow: hidden;
  position: relative;
  transform: rotate(1.5deg);
}

.hero-art::before {
  border: 1px solid rgba(245, 240, 230, 0.14);
  border-radius: 28px 28px 28px 5px;
  content: "";
  inset: 18px;
  position: absolute;
}

.sun {
  background: var(--orange);
  border-radius: 50%;
  height: 118px;
  left: 14%;
  position: absolute;
  top: 13%;
  width: 118px;
}

.house {
  bottom: 21%;
  height: 51%;
  left: 15%;
  position: absolute;
  width: 70%;
}

.roof {
  border-bottom: clamp(72px, 8vw, 112px) solid var(--paper);
  border-left: clamp(92px, 11vw, 154px) solid transparent;
  border-right: clamp(92px, 11vw, 154px) solid transparent;
  height: 0;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 108%;
}

.chimney {
  background: var(--gold);
  height: 23%;
  position: absolute;
  right: 18%;
  top: 1%;
  width: 11%;
}

.house-front {
  align-items: end;
  background: var(--paper);
  bottom: 0;
  display: grid;
  gap: 7%;
  grid-template-columns: 1fr 0.78fr 1fr;
  height: 58%;
  left: 5%;
  padding: 11% 9% 0;
  position: absolute;
  width: 90%;
}

.window {
  align-self: start;
  aspect-ratio: 1.05;
  background: var(--gold);
  border: 6px solid var(--ink);
  position: relative;
}

.window::before,
.window::after {
  background: var(--ink);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.window::before {
  height: 100%;
  width: 5px;
}

.window::after {
  height: 5px;
  width: 100%;
}

.door {
  align-items: flex-end;
  background: var(--orange);
  border: 6px solid var(--ink);
  border-bottom: 0;
  display: flex;
  height: 125%;
  justify-content: flex-end;
  padding: 0 11% 44%;
}

.door i {
  background: var(--gold);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.ground-line {
  background: var(--sage);
  bottom: 19%;
  height: 8px;
  left: 9%;
  position: absolute;
  transform: rotate(-1deg);
  width: 83%;
}

.spark {
  color: var(--paper);
  font-family: var(--font-display), sans-serif;
  font-size: 30px;
  font-weight: 300;
  position: absolute;
}

.spark-one {
  right: 13%;
  top: 15%;
}

.spark-two {
  left: 9%;
  top: 47%;
}

.art-note {
  bottom: 7%;
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.16em;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid rgba(16, 44, 36, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 20px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(243, 111, 62, 0);
  }
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .hero-copy {
    max-width: 640px;
  }

  h1 {
    font-size: clamp(76px, 19vw, 130px);
  }

  .hero-art {
    justify-self: center;
    max-width: 590px;
    min-height: 0;
    width: calc(100% - 18px);
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding-inline: 18px;
  }

  .brand-name span {
    font-size: 9px;
  }

  .status-pill {
    font-size: 9px;
    padding: 9px 11px;
  }

  .hero {
    gap: 52px;
    margin-bottom: 72px;
  }

  h1 {
    font-size: clamp(69px, 22vw, 102px);
  }

  .intro {
    margin-top: 30px;
  }

  .hero-art {
    border-radius: 25px 25px 25px 6px;
    box-shadow: 10px 10px 0 var(--gold);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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