:root {
  --cream: #f7f2ec;
  --paper: #efe5da;
  --taupe: #d9c9bb;
  --coffee: #8b6f5b;
  --ink: #1c1c1c;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; background: var(--cream); color: var(--ink); }

body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
}

main { min-height: 100vh; }

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(25rem, 44%) 1fr;
  background: var(--cream);
}

.hero-copy {
  min-height: 86vh;
  padding: clamp(2rem, 4vw, 4.75rem) clamp(2rem, 5vw, 6rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  background:
    radial-gradient(circle at 8% 12%, rgba(217,201,187,.36), transparent 28%),
    linear-gradient(135deg, #fbf8f4 0%, var(--cream) 58%, #efe6dc 100%);
}

.brand {
  width: min(27rem, 80%);
  height: clamp(10.5rem, 14vw, 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.2);
}

.announcement { margin: auto 0; padding: 2rem 0; }

.eyebrow {
  font-size: .64rem;
  letter-spacing: .45em;
  margin: 0 0 2.2rem;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: .045em;
  font-weight: 400;
  margin: 0;
}

.rule {
  display: block;
  width: 3.2rem;
  border-top: 1px solid var(--coffee);
  margin: 2rem auto;
}

.subhead {
  font-size: .72rem;
  line-height: 1.85;
  letter-spacing: .38em;
  margin: 0;
}

.coming-soon {
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1rem 2.6rem;
  min-width: 15rem;
  background: rgba(217, 201, 187, .38);
  border: 1px solid rgba(139, 111, 91, .14);
  font-size: .75rem;
  letter-spacing: .48em;
  text-indent: .48em;
}

.meta {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: .58rem;
  letter-spacing: .28em;
}

.meta span + span { border-left: 1px solid rgba(28,28,28,.35); padding-left: 2rem; }

.hero-image {
  min-height: 86vh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(28,28,28,.03), transparent 24%),
    url("./hero-emisela.png") center center / cover no-repeat;
}

.quote {
  position: absolute;
  top: 11%;
  left: 7%;
  right: auto;
  color: rgba(28,28,28,.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.25vw, 2.4rem);
  line-height: 1.08;
  transform: rotate(-3deg);
  text-shadow: 0 1px 12px rgba(247,242,236,.28);
}

.values {
  min-height: 14vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 7vw;
}

.values div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .38em;
  line-height: 1.45;
  text-align: center;
}

.values div::after {
  content: "";
  width: 2rem;
  border-top: 1px solid rgba(247,242,236,.55);
  margin-top: .8rem;
}

@media (max-width: 820px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 66vh; padding: 2rem 1.4rem 1.7rem; }
  .brand { width: min(23rem, 88%); height: 10.5rem; margin-bottom: -.5rem; }
  .brand img { transform: scale(1.2); }
  .announcement { padding: 2.5rem 0 2rem; }
  .eyebrow { margin-bottom: 1.4rem; }
  h1 { font-size: clamp(2.25rem, 10vw, 3.4rem); }
  .subhead { font-size: .64rem; }
  .coming-soon { margin-top: 1.7rem; }
  .meta { gap: 1rem; font-size: .5rem; flex-wrap: wrap; }
  .meta span + span { padding-left: 1rem; }
  .hero-image { min-height: 58vh; background-position: 60% center; }
  .quote { top: 7%; left: 6%; right: auto; font-size: 1.5rem; }
  .values { min-height: auto; grid-template-columns: 1fr; gap: 2.4rem; padding: 3.5rem 1.5rem; }
}

@media (max-width: 420px) {
  .hero-copy { min-height: 62vh; }
  .eyebrow { font-size: .55rem; letter-spacing: .3em; }
  h1 { font-size: 2.35rem; }
  .coming-soon { min-width: 13.5rem; }
  .hero-image { min-height: 52vh; }
}

@media (prefers-reduced-motion: no-preference) {
  .brand, .announcement, .meta { animation: reveal .9s ease both; }
  .announcement { animation-delay: .12s; }
  .meta { animation-delay: .24s; }
  @keyframes reveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
