:root {
  --parchment: #f3e8d4;
  --parchment-light: #fbf6eb;
  --ink: #323328;
  --olive: #465039;
  --purple: #5b3b70;
  --gold: #aa7727;
  --gold-soft: #c99f55;
  --line: rgba(120, 87, 39, 0.25);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html,
body {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--parchment);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.paper {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.3), transparent 25%, transparent 75%, rgba(148, 98, 34, 0.06)),
    url("assets/parchment-background.png") center / cover;
}

.paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 252, 243, 0.55), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(137, 93, 35, 0.04));
}

.page-frame {
  position: fixed;
  inset: 0.8rem;
  z-index: 10;
  border: 1px solid rgba(156, 109, 35, 0.24);
  pointer-events: none;
}

.topbar,
.footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
  margin: 0 clamp(1.6rem, 4vw, 4.5rem);
  color: var(--olive);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.topbar {
  border-bottom: 1px solid var(--line);
  animation: fade-down 800ms 100ms both;
}

.topbar p,
.footer p {
  margin: 0;
}

.topbar p:last-child,
.footer p:last-child {
  text-align: right;
}

.topbar-flower {
  color: var(--gold);
  font-size: 0.75rem;
}

.coming-soon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.4rem minmax(19rem, 0.88fr) minmax(21rem, 0.75fr) 2.4rem;
  gap: clamp(2.4rem, 5vw, 6.5rem);
  align-items: center;
  width: min(94rem, 100%);
  min-height: calc(100svh - 11rem);
  margin: auto;
  padding: clamp(2rem, 4.4vw, 4.5rem) clamp(1.6rem, 4vw, 4.5rem);
}

.brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(65svh, 46rem);
  animation: fade-up 1s 250ms both;
}

.brand-stage::before {
  content: "";
  position: absolute;
  width: min(36vw, 33rem);
  aspect-ratio: 0.79;
  border: 1px solid rgba(170, 119, 39, 0.28);
  border-radius: 50% 50% 44% 44% / 38% 38% 62% 62%;
}

.brand-stage::after {
  content: "";
  position: absolute;
  bottom: 8%;
  width: 58%;
  height: 12%;
  background: rgba(104, 71, 30, 0.12);
  border-radius: 50%;
  filter: blur(2rem);
  transform: scaleY(0.38);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(170, 119, 39, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(40vw, 38rem);
  aspect-ratio: 1;
}

.orbit-two {
  width: min(31vw, 27rem);
  aspect-ratio: 1;
  border-style: dashed;
}

.logo {
  position: relative;
  z-index: 2;
  width: auto;
  height: min(66svh, 44rem);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1.25rem 1.8rem rgba(89, 55, 21, 0.1));
}

.announcement {
  max-width: 34rem;
  padding-right: clamp(0rem, 3vw, 3rem);
  animation: fade-up 1s 450ms both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

h1 {
  margin: 0;
  color: var(--olive);
  font: 400 clamp(3.4rem, 5.5vw, 6.2rem)/0.88 var(--serif);
  letter-spacing: -0.05em;
}

h1 em {
  color: var(--purple);
  font-weight: 400;
}

.intro {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: rgba(50, 51, 40, 0.72);
  font: 400 clamp(1.05rem, 1.4vw, 1.22rem)/1.65 var(--serif);
}

.notify-form {
  margin-top: 2.7rem;
}

.notify-form label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--olive);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(70, 80, 57, 0.46);
  transition: border-color 180ms ease;
}

.field-row:focus-within {
  border-color: var(--purple);
}

.field-row input {
  min-width: 0;
  padding: 1rem 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  outline: 0;
  font: 400 1.17rem var(--serif);
}

.field-row input::placeholder {
  color: rgba(50, 51, 40, 0.42);
}

.field-row button {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0 0.75rem 1rem;
  color: var(--purple);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-row button b {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.field-row button:hover b,
.field-row button:focus-visible b {
  transform: translateX(0.25rem);
}

.form-message {
  margin: 0.8rem 0 0;
  color: rgba(50, 51, 40, 0.48);
  font-size: 0.63rem;
}

.form-message.success {
  color: var(--purple);
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  padding-bottom: 0.45rem;
  color: var(--olive);
  border-bottom: 1px solid rgba(70, 80, 57, 0.3);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.story-link i {
  color: var(--gold);
  font: 400 0.85rem var(--serif);
  transition: transform 180ms ease;
}

.story-link:hover i,
.story-link:focus-visible i {
  transform: translateY(0.2rem);
}

.side-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(70, 80, 57, 0.62);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.side-note-left {
  transform: rotate(180deg);
}

.side-note i {
  width: 1px;
  height: 2.5rem;
  background: var(--gold-soft);
}

.origin {
  position: relative;
  z-index: 1;
  margin: 0 0.8rem;
  padding: clamp(6rem, 10vw, 10rem) clamp(1.6rem, 8vw, 9rem) clamp(5.5rem, 9vw, 8rem);
  overflow: hidden;
  background: rgba(251, 246, 235, 0.67);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin::before {
  content: "";
  position: absolute;
  top: 7%;
  right: -9rem;
  width: 32rem;
  aspect-ratio: 1;
  border: 1px solid rgba(170, 119, 39, 0.12);
  border-radius: 50%;
}

.origin::after {
  content: "H";
  position: absolute;
  right: -1.5rem;
  bottom: -8rem;
  color: rgba(91, 59, 112, 0.035);
  font: 400 30rem/1 var(--serif);
  pointer-events: none;
}

.origin-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  color: var(--gold);
}

.origin-ornament span {
  width: 3rem;
  height: 1px;
  background: var(--gold-soft);
}

.origin-ornament i {
  font-size: 0.65rem;
  font-style: normal;
}

.origin-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(24rem, 0.75fr);
  gap: clamp(4rem, 10vw, 11rem);
  max-width: 80rem;
  margin: auto;
}

.origin-heading .eyebrow {
  margin-bottom: 1.8rem;
}

.origin-heading h2 {
  margin: 0;
  color: var(--olive);
  font: 400 clamp(3.7rem, 6.4vw, 7rem)/0.88 var(--serif);
  letter-spacing: -0.055em;
}

.origin-heading h2 em {
  color: var(--purple);
  font-weight: 400;
}

.origin-heading blockquote {
  max-width: 30rem;
  margin: 3rem 0 0;
  padding: 0 0 0 1.3rem;
  color: var(--gold);
  border-left: 1px solid var(--gold-soft);
  font: italic 400 1.3rem/1.5 var(--serif);
}

.origin-story {
  padding-top: 2.8rem;
  color: rgba(50, 51, 40, 0.7);
  font-size: 0.88rem;
  line-height: 1.85;
}

.origin-story > p {
  margin: 0 0 1.2rem;
}

.origin-story .origin-lead {
  margin-bottom: 1.5rem;
  color: var(--olive);
  font: 400 clamp(1.45rem, 2vw, 1.85rem)/1.42 var(--serif);
}

.origin-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-values span {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0.6rem 1.35rem 0;
  color: var(--olive);
  font: 500 1.05rem var(--serif);
}

.origin-values b {
  color: var(--gold);
  font: 500 0.48rem var(--sans);
  letter-spacing: 0.15em;
}

.care-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  margin-top: 2.4rem;
  padding: 1.35rem 1.5rem;
  color: rgba(50, 51, 40, 0.62);
  background: rgba(243, 232, 212, 0.52);
  border: 1px solid rgba(170, 119, 39, 0.19);
  font-size: 0.68rem;
  line-height: 1.7;
}

.care-note span {
  color: var(--gold);
}

.care-note p {
  margin: 0;
}

.origin-closing {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: clamp(5rem, 8vw, 8rem) auto 0;
  color: var(--purple);
  text-align: center;
  font: italic 400 clamp(1.8rem, 3.5vw, 3.5rem)/1.2 var(--serif);
}

.footer {
  min-height: 5.5rem;
  border-top: 1px solid var(--line);
  animation: fade-up 800ms 650ms both;
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
}

.footer-mark span {
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--gold-soft);
}

.footer-mark i {
  font-size: 0.35rem;
  font-style: normal;
}

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

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

@media (max-width: 980px) {
  .coming-soon {
    grid-template-columns: minmax(17rem, 0.9fr) minmax(19rem, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .side-note {
    display: none;
  }

  .brand-stage::before {
    width: min(46vw, 28rem);
  }

  .logo {
    height: min(60svh, 38rem);
  }

  .origin-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .origin-story {
    max-width: 42rem;
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  body {
    overflow-y: auto;
  }

  .page-frame {
    inset: 0.45rem;
  }

  .topbar,
  .footer {
    min-height: 4.3rem;
    margin: 0 1.25rem;
    font-size: 0.48rem;
    letter-spacing: 0.15em;
  }

  .topbar p:first-child {
    max-width: 10rem;
    line-height: 1.5;
  }

  .coming-soon {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    min-height: auto;
    padding: 2rem 1.4rem 3rem;
  }

  .brand-stage {
    min-height: 27rem;
  }

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

  .orbit-one {
    width: min(96vw, 28rem);
  }

  .orbit-two {
    width: min(75vw, 21rem);
  }

  .logo {
    height: 28rem;
    max-height: 58svh;
  }

  .announcement {
    max-width: 32rem;
    padding: 0 0.6rem;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .eyebrow::before {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  .intro {
    margin-right: auto;
    margin-left: auto;
  }

  .notify-form {
    max-width: 28rem;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .story-link {
    margin-bottom: 0.8rem;
  }

  .origin {
    margin: 0 0.45rem;
    padding-right: 1.8rem;
    padding-left: 1.8rem;
  }

  .origin-heading {
    text-align: center;
  }

  .origin-heading .eyebrow {
    justify-content: center;
  }

  .origin-heading blockquote {
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    border-left: 0;
  }

  .origin-story {
    text-align: left;
  }

  .origin-closing {
    max-width: 27rem;
  }

  .footer p:first-child {
    max-width: 9rem;
    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .brand-stage {
    min-height: 23rem;
  }

  .logo {
    height: 24rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row button {
    justify-self: center;
    padding: 0.85rem 0;
  }

  .footer-mark span {
    width: 1rem;
  }

  .origin-values span {
    font-size: 0.88rem;
  }
}

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