:root {
  --black: #151515;
  --paper: #F4EFE8;
  --rose: #C58F8A;
  --sage: #A8B8A3;
  --brown: #6F625C;
  --white: #fffaf5;
  --shadow: rgba(21, 21, 21, 0.14);
}

@font-face {
  font-family: "Cormorant Garamond Local";
  src: url("fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--black);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 14%, rgba(168, 184, 163, 0.24), transparent 24rem),
    radial-gradient(circle at 86% 78%, rgba(197, 143, 138, 0.22), transparent 22rem),
    linear-gradient(135deg, #fffaf5 0%, var(--paper) 46%, #efe6dc 100%);
  overflow-x: hidden;
}

.construction-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-rows: 1fr auto;
  padding: clamp(1rem, 3vw, 2.5rem);
  isolation: isolate;
}

.hero {
  width: min(100%, 66rem);
  margin: auto;
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.brand-mark {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.logo-shell {
  position: relative;
  display: grid;
  width: clamp(9rem, 22vw, 14rem);
  aspect-ratio: 1;
  place-items: center;
}

.animated-logo {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 90%;
  overflow: visible;
  pointer-events: none;
}

.animated-logo use {
  fill: var(--brown);
  stroke: var(--brown);
}

.eyebrow {
  margin: 0.45rem 0 0;
  color: var(--brown);
  font-family: "Cormorant Garamond Local", Georgia, serif;
  font-size: clamp(3.1rem, 9vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

h1 {
  margin: 0;
  color: var(--black);
  font-family: "Montserrat Local", Arial, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  transform: translateX(0.23em);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  color: var(--brown);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.instagram-link:hover {
  color: var(--rose);
  transform: translateY(-0.08rem);
}

.instagram-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.message {
  width: min(100%, 42rem);
  margin: clamp(1.7rem, 4vw, 3rem) auto 0;
}

.lead {
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.75;
}

.typing-line {
  min-height: 2rem;
  margin-top: 0.9rem;
  color: var(--brown);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.typing-line strong {
  color: var(--rose);
  font-weight: 600;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.typing-line strong.is-changing {
  opacity: 0;
  transform: translateY(0.35rem);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(111, 98, 92, 0.76);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}

footer::before,
footer::after {
  width: min(12vw, 5rem);
  height: 1px;
  content: "";
  background: rgba(197, 143, 138, 0.5);
}

@media (max-width: 720px) {
  .hero {
    padding-top: 1.5rem;
  }

  h1 {
    font-size: clamp(1rem, 5vw, 1.35rem);
    letter-spacing: 0.46em;
    transform: translateX(0.23em);
  }

  footer {
    flex-wrap: wrap;
    gap: 0.6rem;
    letter-spacing: 0.2em;
  }

  footer::before,
  footer::after {
    display: none;
  }
}

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