:root {
  --wine-900: #3f0714;
  --wine-800: #5a0b1d;
  --wine-700: #74152a;
  --cream-100: #fffaf5;
  --cream-200: #f7eadf;
  --cream-300: #eed8c7;
  --rose-300: #d6ad9f;
  --gold-500: #b98b55;
  --ink: #311c22;
  --muted: #795f66;
  --line: rgba(90, 11, 29, 0.13);
  --shadow: 0 30px 80px rgba(63, 7, 20, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 139, 85, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 92%, rgba(90, 11, 29, 0.09), transparent 26rem),
    linear-gradient(135deg, #fffaf5 0%, #f7eadf 55%, #f1dfd2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.decor {
  position: absolute;
  border: 1px solid rgba(90, 11, 29, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.decor--one {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -110px;
  box-shadow:
    0 0 0 42px rgba(90, 11, 29, 0.025),
    0 0 0 86px rgba(90, 11, 29, 0.018);
}

.decor--two {
  width: 300px;
  height: 300px;
  bottom: -180px;
  left: -70px;
  box-shadow: 0 0 0 54px rgba(185, 139, 85, 0.035);
}

.card {
  width: min(780px, 100%);
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(90, 11, 29, 0.10);
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--wine-900), var(--wine-700), var(--gold-500));
}

.brand {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.brand__logo {
  display: block;
  width: clamp(190px, 31vw, 285px);
  max-height: 210px;
  object-fit: contain;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine-800);
  background: rgba(247, 234, 223, 0.75);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(185, 139, 85, 0.14);
  animation: pulse 2.2s ease-in-out infinite;
}

.intro {
  margin: 24px auto 0;
  max-width: 610px;
}

.intro__kicker {
  margin: 0 0 6px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--wine-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.intro__text {
  margin: 18px auto 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 2.8vw, 1.35rem);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(185, 139, 85, 0.35);
  outline-offset: 3px;
}

.button--primary {
  color: #fff8f2;
  background: linear-gradient(135deg, var(--wine-900), var(--wine-700));
  box-shadow: 0 12px 28px rgba(63, 7, 20, 0.18);
}

.button--primary:hover {
  box-shadow: 0 15px 34px rgba(63, 7, 20, 0.24);
}

.button--light {
  color: var(--wine-800);
  border: 1px solid rgba(90, 11, 29, 0.14);
  background: rgba(255, 255, 255, 0.56);
}

.button--light:hover {
  border-color: rgba(90, 11, 29, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.button__label {
  opacity: 0.74;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button strong {
  font-size: clamp(0.86rem, 2vw, 0.98rem);
  font-weight: 600;
}

.details {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.details__item {
  display: grid;
  gap: 5px;
  text-align: center;
}

.details__item span {
  color: var(--wine-800);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.14rem;
  font-weight: 600;
}

.details__item small {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.4;
}

.details__divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--wine-800);
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.82); opacity: 0.72; }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px;
  }

  .card {
    padding: 28px 18px 24px;
    border-radius: 22px;
  }

  .brand__logo {
    width: min(220px, 62vw);
    max-height: 165px;
  }

  .intro {
    margin-top: 19px;
  }

  .contact {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .button {
    min-height: 70px;
  }

  .details {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 21px;
    padding-top: 18px;
  }

  .details__divider {
    width: 54px;
    height: 1px;
    margin: 0 auto;
  }

  .footer {
    flex-direction: column;
    gap: 5px;
    margin-top: 16px;
  }
}

@media (max-height: 760px) and (min-width: 641px) {
  .card {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .brand__logo {
    max-height: 145px;
    width: 215px;
  }

  .intro {
    margin-top: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
  }

  .intro__text,
  .contact,
  .details,
  .footer {
    margin-top: 14px;
  }
}

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