:root {
  --purple: #7443b5;
  --purple-dark: #4c2784;
  --orange: #ff8428;
  --cream: #fff7ed;
  --paper: #fffaf5;
  --ink: #261b31;
  --muted: #6f6278;
  --soft-line: rgba(116, 67, 181, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff4e7 0%, var(--paper) 42%, #ffffff 100%);
}

.landing {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -72px;
  width: 62vw;
  height: 180px;
  border-radius: 100% 0 0 0;
  background: rgba(255, 250, 245, 0.96);
  z-index: -1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(38, 27, 49, 0.58) 0%, rgba(38, 27, 49, 0.26) 44%, transparent 78%),
    linear-gradient(0deg, rgba(38, 27, 49, 0.34) 0%, transparent 44%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 24px;
}

.mobile-logo {
  display: none;
}

.status-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 10px 26px rgba(38, 27, 49, 0.12);
  backdrop-filter: blur(18px) saturate(1.2);
}

.status-pill {
  gap: 8px;
  padding: 7px 13px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(38, 27, 49, 0.24);
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 132, 40, 0.18);
}

.message-panel {
  width: min(610px, calc(100% - 32px));
  margin: 0 auto 46px;
  margin-left: max(16px, calc((100vw - 1160px) / 2));
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px 34px 34px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 250, 245, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 28px 78px rgba(38, 27, 49, 0.26);
  backdrop-filter: blur(24px) saturate(1.28);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(38, 27, 49, 0.34);
  font-size: clamp(2.25rem, 5.1vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.message-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(38, 27, 49, 0.3);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.72;
}

.visit-card {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 250, 245, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.visit-card strong {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(38, 27, 49, 0.28);
  font-size: 1rem;
}

.visit-card span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.note-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: -18px auto 0;
  padding-bottom: 32px;
}

.note-bar article {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid var(--soft-line);
  border-radius: 26px 26px 26px 8px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(76, 39, 132, 0.08);
}

.note-bar article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--orange), var(--purple));
}

.note-bar strong {
  display: block;
  margin-bottom: 9px;
  color: var(--purple);
  font-size: 1.12rem;
}

.note-bar span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 0 20px;
    background: #261b31;
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 33% center;
    z-index: -3;
  }

  .hero-overlay {
    display: block;
    background:
      linear-gradient(180deg, rgba(38, 27, 49, 0.08) 0%, rgba(38, 27, 49, 0.18) 38%, rgba(38, 27, 49, 0.78) 100%),
      linear-gradient(90deg, rgba(38, 27, 49, 0.18), transparent 54%);
  }

  .topbar {
    position: absolute;
    inset: 14px 14px auto 14px;
    z-index: 2;
    width: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-top: 0;
  }

  .mobile-logo {
    display: block;
    width: min(210px, 54vw);
    height: auto;
    border-radius: 18px;
    background: rgba(255, 250, 245, 0.72);
    box-shadow: 0 14px 34px rgba(38, 27, 49, 0.2);
    backdrop-filter: blur(16px) saturate(1.18);
  }

  .message-panel {
    width: calc(100% - 24px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.34);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
      rgba(255, 250, 245, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      0 22px 58px rgba(38, 27, 49, 0.28);
    backdrop-filter: blur(22px) saturate(1.24);
  }

  h1 {
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(38, 27, 49, 0.36);
  }

  .message-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(38, 27, 49, 0.28);
  }

  .visit-card {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 250, 245, 0.14);
  }

  .visit-card strong {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(38, 27, 49, 0.26);
  }

  .visit-card span {
    color: rgba(255, 255, 255, 0.86);
  }

  .note-bar {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 14px;
  }

  .hero-image {
    object-position: 31% center;
  }

  .topbar {
    inset: 12px;
  }

  .status-pill {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .mobile-logo {
    width: min(184px, 52vw);
    border-radius: 16px;
  }

  .message-panel {
    padding: 18px;
    border-radius: 26px 26px 26px 8px;
  }

  h1 {
    font-size: clamp(1.8rem, 9.6vw, 2.65rem);
    line-height: 1.05;
  }

  .message-panel p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .visit-card,
  .note-bar article {
    border-radius: 20px 20px 20px 8px;
  }
}
