:root {
  --maroon: #5a0d15;
  --maroon-deep: #35060b;
  --maroon-soft: #7d2731;
  --gold: #bf8625;
  --gold-light: #efd48d;
  --gold-pale: #f9edc5;
  --ivory: #fbf8ef;
  --cream: #f4ecd9;
  --ink: #351a16;
  --olive: #384515;
  --shadow: 0 28px 80px rgba(59, 20, 16, .18);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.98) 0 18%, rgba(251,248,239,.95) 46%, rgba(244,236,217,.98) 100%),
    var(--ivory);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(90deg, rgba(90,13,21,.04) 1px, transparent 1px),
    linear-gradient(rgba(90,13,21,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0 38%, transparent 82%);
}

a { color: inherit; }
svg { display: block; }

.page-shell {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 18px;
  border: 1px solid rgba(191,134,37,.48);
  border-radius: 34px;
}

.page-shell::after {
  inset: 25px;
  border-color: rgba(90,13,21,.16);
  border-radius: 30px;
}

.top-ribbon {
  position: relative;
  z-index: 3;
  height: 124px;
  background: linear-gradient(135deg, var(--maroon-deep), #7b131b 48%, var(--maroon-deep));
  clip-path: polygon(0 0, 100% 0, 100% 39%, 79% 31%, 53% 55%, 27% 38%, 0 78%);
  box-shadow: 0 15px 35px rgba(53,6,11,.22);
}

.ribbon-line {
  position: absolute;
  left: -3%;
  width: 106%;
  height: 7px;
  border-radius: 999px;
  transform: rotate(-2.8deg);
  transform-origin: center;
}

.ribbon-line-one {
  top: 56px;
  background: linear-gradient(90deg, #8e5914, #fff0b4 18%, #c58b2b 52%, #ffe7a1 78%, #a96f17);
  box-shadow: 0 3px 0 rgba(65,16,8,.22);
}

.ribbon-line-two {
  top: 68px;
  height: 2px;
  background: rgba(255,242,195,.88);
}

.hero {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(1180px, calc(100% - 64px));
  margin: -42px auto 0;
  padding: 34px 0 30px;
}

.hero-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(420px, 1.35fr);
  grid-template-areas:
    "crest copy"
    "contact contact";
  align-items: center;
  gap: 26px 52px;
  padding: 36px 54px 26px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.78), rgba(255,255,255,.42)),
    rgba(251,248,239,.74);
  border: 1px solid rgba(191,134,37,.34);
  border-radius: 44px 12px 44px 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  position: relative;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-card::before {
  inset: 10px;
  border: 1px solid rgba(90,13,21,.10);
  border-radius: 36px 9px 36px 9px;
}

.hero-card::after {
  width: 84px;
  height: 84px;
  right: 25px;
  top: 22px;
  border-top: 2px solid rgba(191,134,37,.54);
  border-right: 2px solid rgba(191,134,37,.54);
  border-radius: 0 8px 0 0;
}

.crest-wrap {
  grid-area: crest;
  position: relative;
  justify-self: center;
  width: clamp(248px, 28vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.crest-halo {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,212,141,.45), rgba(191,134,37,.10) 53%, transparent 70%);
  filter: blur(2px);
  animation: halo 5.6s ease-in-out infinite;
}

.crest {
  position: relative;
  width: 94%;
  height: 94%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 22px 20px rgba(64,20,15,.23));
}

.hero-copy {
  grid-area: copy;
  position: relative;
  padding: 8px 4px 6px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font: 600 clamp(.68rem, 1vw, .82rem)/1.2 var(--sans);
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: var(--maroon);
  font: 700 clamp(2.35rem, 5.1vw, 5rem)/.9 var(--serif);
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: var(--ink);
  font-size: .62em;
  line-height: 1.15;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(430px, 88%);
  margin: 19px 0 15px;
  color: var(--gold);
}

.ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament b {
  font-size: .72rem;
}

.coming-soon {
  margin: 0 0 12px;
  color: var(--maroon-soft);
  font: 600 clamp(1.52rem, 2.7vw, 2.4rem)/1.1 var(--serif);
  letter-spacing: .035em;
}

.intro {
  max-width: 680px;
  margin: 0;
  color: rgba(53,26,22,.78);
  font-size: clamp(.94rem, 1.25vw, 1.06rem);
  line-height: 1.8;
}

.motto {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: #996617;
  font: 600 .73rem/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.motto i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(191,134,37,.12);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font: 600 .75rem/1 var(--sans);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff9ed;
  background: linear-gradient(135deg, var(--maroon), #7b1720);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 25px rgba(90,13,21,.18);
}

.button-secondary {
  color: var(--maroon);
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(191,134,37,.62);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(69,17,15,.20);
  outline: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--gold-pale);
}

.contact-panel {
  grid-area: contact;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  position: relative;
  z-index: 2;
  padding-top: 22px;
  border-top: 1px solid rgba(191,134,37,.30);
}

.contact-item {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(191,134,37,.18);
  border-radius: 14px;
  color: var(--ink);
  font-size: .83rem;
  line-height: 1.55;
}

.contact-item a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-item a:hover { color: var(--maroon); }
.contact-item small {
  display: block;
  margin-bottom: 2px;
  color: #9a6a1c;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(191,134,37,.38);
  border-radius: 50%;
  background: rgba(251,248,239,.86);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.watermark {
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -240px;
  width: 780px;
  opacity: .034;
  transform: rotate(-8deg);
  pointer-events: none;
}

.watermark img { width: 100%; border-radius: 50%; }

.corner-flourish {
  position: absolute;
  z-index: 2;
  width: min(20vw, 270px);
  height: auto;
  bottom: -18px;
  fill: none;
  stroke: rgba(191,134,37,.62);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.corner-flourish-left { left: -22px; }
.corner-flourish-right { right: -22px; transform: scaleX(-1); }

footer {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding: 6px 32px 28px;
  color: rgba(90,13,21,.74);
  font-size: .67rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal .75s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal-one { animation-delay: .05s; }
.reveal-two { animation-delay: .12s; }
.reveal-three { animation-delay: .20s; }
.reveal-four { animation-delay: .28s; }
.reveal-five { animation-delay: .36s; }
.reveal-six { animation-delay: .44s; }
.reveal-seven { animation-delay: .52s; }
.reveal-eight { animation-delay: .60s; }
.reveal-nine { animation-delay: .68s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes halo {
  0%,100% { transform: scale(.97); opacity: .72; }
  50% { transform: scale(1.035); opacity: 1; }
}

@media (max-width: 900px) {
  .top-ribbon { height: 104px; }
  .hero { width: min(720px, calc(100% - 36px)); margin-top: -30px; }
  .hero-card {
    grid-template-columns: 1fr;
    grid-template-areas: "crest" "copy" "contact";
    text-align: center;
    padding: 30px 28px 24px;
    gap: 14px;
  }
  .crest-wrap { width: min(310px, 72vw); }
  .hero-copy { padding-top: 0; }
  .ornament { margin-inline: auto; }
  .intro { margin-inline: auto; }
  .motto, .actions { justify-content: center; }
  .contact-panel { grid-template-columns: 1fr; text-align: left; }
  .corner-flourish { width: 190px; opacity: .58; }
  .watermark { right: -300px; }
}

@media (max-width: 520px) {
  .page-shell::before { inset: 9px; border-radius: 22px; }
  .page-shell::after { inset: 14px; border-radius: 18px; }
  .top-ribbon { height: 88px; }
  .ribbon-line-one { top: 41px; }
  .ribbon-line-two { top: 52px; }
  .hero { width: calc(100% - 24px); padding-bottom: 18px; }
  .hero-card { padding: 26px 18px 20px; border-radius: 30px 10px 30px 10px; }
  .hero-card::before { inset: 7px; border-radius: 25px 7px 25px 7px; }
  .hero-card::after { width: 52px; height: 52px; right: 16px; top: 14px; }
  .crest-wrap { width: min(260px, 76vw); }
  h1 { font-size: clamp(2.2rem, 13vw, 3.4rem); }
  .coming-soon { font-size: 1.55rem; }
  .intro { font-size: .89rem; line-height: 1.65; }
  .motto { justify-content: center; gap: 8px; font-size: .65rem; letter-spacing: .11em; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .contact-item { font-size: .76rem; }
  footer { padding-bottom: 22px; font-size: .58rem; }
  .corner-flourish { width: 145px; bottom: 0; opacity: .42; }
}

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