:root {
  color-scheme: dark;
  --cream: #f7ead3;
  --sand: #d9b77f;
  --cherry: #9f2f35;
  --brown: #241711;
  --panel: rgba(255, 255, 255, 0.07);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 18%, rgba(159, 47, 53, 0.35), transparent 31rem),
    radial-gradient(circle at 12% 82%, rgba(217, 183, 127, 0.15), transparent 32rem),
    var(--brown);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: repeating-linear-gradient(115deg, transparent 0 52px, rgba(255, 255, 255, 0.05) 53px 54px);
}

.shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(20px, 5vw, 64px);
}

.hero {
  width: min(1120px, 100%);
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(247, 234, 211, 0.18);
  border-radius: 36px;
  background: rgba(26, 16, 12, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: clamp(132px, 17vw, 180px);
  height: auto;
  padding: 6px;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
}

.brand p,
.eyebrow,
.detail span,
footer {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand p { margin: 0; color: var(--sand); font-size: 0.72rem; font-weight: 700; }

.copy { max-width: 790px; margin: clamp(34px, 7vw, 72px) 0 clamp(28px, 5vw, 52px); }

.eyebrow { margin: 0 0 15px; color: var(--sand); font-size: 0.72rem; font-weight: 700; }

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 9vw, 8rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

h1 em { color: var(--sand); font-weight: inherit; }

.lead { max-width: 610px; margin: 28px 0 0; color: rgba(247, 234, 211, 0.77); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7; }

.details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.detail {
  display: flex;
  min-width: 0;
  padding: 22px;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(247, 234, 211, 0.12);
  border-radius: 18px;
  color: inherit;
  background: var(--panel);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.detail:hover,
.detail:focus-visible { transform: translateY(-3px); border-color: var(--sand); background: rgba(255, 255, 255, 0.11); }
.detail-wide { grid-column: span 2; }
.detail span { color: var(--sand); font-size: 0.62rem; font-weight: 700; }
.detail strong { overflow-wrap: anywhere; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1; }
.detail small { color: rgba(247, 234, 211, 0.62); }

footer { display: flex; margin-top: 36px; align-items: center; justify-content: center; gap: 16px; color: rgba(247, 234, 211, 0.52); font-size: 0.58rem; font-weight: 700; }
footer i { color: var(--cherry); font-style: normal; }

@media (max-width: 620px) {
  .shell { padding: 12px; }
  .hero { padding: 28px 20px; border-radius: 24px; }
  .brand { align-items: flex-start; flex-direction: column; gap: 8px; }
  .copy { margin-top: 36px; }
  .details { grid-template-columns: 1fr; }
  .detail-wide { grid-column: auto; }
  .detail-email strong { font-size: 1rem; }
  footer { gap: 8px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
