:root {
  --paper: #fffaf0;
  --flour: #fffdf8;
  --ink: #211a15;
  --muted: #74685d;
  --tomato: #bd3d27;
  --tomato-dark: #8e2d1d;
  --basil: #245c3e;
  --basil-dark: #173f2b;
  --gold: #c48a2c;
  --zest: #f2c84b;
  --line: rgba(33, 26, 21, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.coming-soon {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(560px, 1.18fr);
  min-height: 100svh;
}

.photo-panel {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.photo-panel > img {
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  position: absolute;
  width: 100%;
}

.photo-shade {
  background:
    linear-gradient(180deg, rgba(22, 16, 12, 0.06) 45%, rgba(22, 16, 12, 0.52)),
    linear-gradient(90deg, rgba(22, 16, 12, 0.2), transparent 35%);
  inset: 0;
  position: absolute;
}

.photo-note {
  background: var(--zest);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0;
  padding: 0.58rem 0.82rem 0.5rem;
  position: absolute;
  text-transform: uppercase;
}

.photo-note-top {
  left: clamp(1.3rem, 3vw, 2.5rem);
  top: clamp(1.3rem, 3vw, 2.5rem);
  transform: rotate(-3deg);
}

.photo-note-bottom {
  bottom: clamp(1.7rem, 4vw, 3.5rem);
  right: clamp(1.3rem, 3vw, 2.5rem);
  transform: rotate(2deg);
}

.content-panel {
  background:
    linear-gradient(rgba(33, 26, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 26, 21, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 90% 13%, rgba(189, 61, 39, 0.12), transparent 28%),
    var(--paper);
  background-size: 28px 28px, 28px 28px, auto, auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: clamp(1.5rem, 4.4vw, 4.6rem) clamp(1.5rem, 5.8vw, 6.8rem) clamp(1.5rem, 3.2vw, 3.2rem);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  gap: 0.7rem;
  width: fit-content;
}

.brand-mark {
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: block;
  height: 2.55rem;
  overflow: hidden;
  transform: rotate(-4deg);
  width: 2.55rem;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.message {
  margin: clamp(4rem, 10vh, 7.5rem) 0;
  max-width: 760px;
}

.eyebrow {
  align-items: center;
  color: var(--tomato-dark);
  display: flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 0.65rem;
  letter-spacing: 0.11em;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--tomato);
  border-radius: 50%;
  height: 0.6rem;
  width: 0.6rem;
}

h1 {
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: clamp(4.3rem, 7.7vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.82;
  margin: 0;
  text-wrap: balance;
}

.intro {
  color: #3d342c;
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  margin: clamp(1.8rem, 3.5vw, 3.2rem) 0 0;
  max-width: 650px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.65rem;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  fill: none;
  height: 1.05rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1.05rem;
}

.button-primary {
  background: var(--tomato);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--flour);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.75);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--tomato-dark);
  box-shadow: 7px 7px 0 var(--ink);
}

.button:focus-visible,
.details a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.1fr 1.25fr 0.9fr;
  padding-top: 1.45rem;
}

.details div {
  display: flex;
  flex-direction: column;
  gap: 0.33rem;
}

.details strong {
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.details a,
.details p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 930px) {
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    min-height: min(46vh, 420px);
  }

  .content-panel {
    min-height: auto;
  }

  .message {
    margin: clamp(4rem, 10vw, 6rem) 0;
  }

  h1 {
    font-size: clamp(4.5rem, 15vw, 8rem);
  }
}

@media (max-width: 640px) {
  .photo-panel {
    min-height: 36svh;
  }

  .photo-note-top {
    display: none;
  }

  .photo-note-bottom {
    bottom: 1rem;
    right: 1rem;
  }

  .content-panel {
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .message {
    margin: 3.5rem 0 4rem;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5.5rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .details {
    grid-template-columns: 1fr 1fr;
  }

  .details div:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
