:root {
  color-scheme: light;
  --navy: #0f1b2d;
  --ink: #16233a;
  --gold: #c79a52;
  --mist: #f5f2ed;
  --stone: #d9d0c4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #f3efe8 35%, #e4ded4 100%);
  color: var(--ink);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 3.5rem clamp(1.5rem, 4vw, 4rem) 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #5f6b7e;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
}

.card {
  max-width: 760px;
  width: 100%;
  background: var(--white);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 30px 60px rgba(15, 27, 45, 0.15);
  border: 1px solid rgba(199, 154, 82, 0.2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 1rem 0 1.5rem;
  color: var(--navy);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone), transparent);
  margin-bottom: 2rem;
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.details h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7a6a53;
  margin-bottom: 0.5rem;
}

.details p {
  font-size: 1.05rem;
  color: var(--ink);
}

.details a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 154, 82, 0.6);
  padding-bottom: 0.1rem;
}

.details a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #5b6372;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(15, 27, 45, 0.1);
  padding-top: 1.25rem;
}

@media (max-width: 640px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
