:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --space: #07133c;
  --ink: #030817;
  --white: #ffffff;
  --muted: #c8d6f8;
  --gold: #f6d589;
  --cyan: #57efff;
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 117, 170, 0.3), transparent 38rem),
    linear-gradient(180deg, #07133c 0%, #030817 100%);
}

a {
  color: inherit;
}

.invitation-page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  place-items: start center;
  background: #07133c;
}

.invitation-image {
  display: block;
  width: 100%;
  max-width: 1429px;
  height: auto;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 56px;
  align-items: stretch;
}

.location-copy {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 52, 0.78);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
}

.location-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(3, 8, 23, 0.44);
  font-weight: 850;
  text-decoration: none;
}

.action.primary {
  border: 0;
  color: #041026;
  background: linear-gradient(135deg, var(--gold), #ffffff 48%, var(--cyan));
}

.map {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px) {
  .invitation-page {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
  }

  .invitation-image {
    width: auto;
    max-width: 100vw;
    max-height: 100vh;
    max-height: 100svh;
    object-fit: contain;
  }

  .location-section {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 560px);
    padding: 26px 0 34px;
  }

  .location-copy {
    min-height: auto;
    padding: 24px;
  }

  .map {
    min-height: 360px;
  }

  .action {
    width: 100%;
  }
}
