:root {
  --green: #00674f;
  --green-deep: #004d3a;
  --cream: #fdf9f0;
  --gold: #cf9c3f;
  --gold-light: #e9c88a;
  --charcoal: #222222;

  /* Perpetua Titling MT is a licensed Monotype face — it renders correctly for
     visitors who have it installed (e.g. via Office/Adobe) and falls back to
     Cinzel, a free titling serif with a similar inscriptional feel, otherwise. */
  --font-display: "Perpetua Titling MT", "Perpetua Titling MT Light", "Cinzel", serif;
  --font-body: "Inter", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1.5rem 0;
}

.header-logo {
  width: 84px;
  height: auto;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  background:
    radial-gradient(circle at 50% 0%, #ffffff 0%, var(--cream) 55%, var(--cream) 100%);
  color: var(--green-deep);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.opening-soon {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin: 0 0 1rem;
  color: var(--green-deep);
}

.tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--green);
  max-width: 480px;
  margin: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ---------- Details ---------- */

.details {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.details-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.detail-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  color: var(--green);
  margin: 0 0 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.detail-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.detail-line {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 0 0.4rem;
}

.detail-line a {
  color: var(--charcoal);
  text-decoration: none;
}

.detail-line a:hover {
  color: var(--green);
}

.map-frame {
  margin-top: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 103, 79, 0.15);
  aspect-ratio: 4 / 3;
  background: #e8e3d6;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.detail-card .socials {
  display: flex;
  gap: 1.1rem;
  margin: 1rem 0 1.75rem;
}

.detail-card .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 103, 79, 0.3);
  color: var(--green);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.detail-card .socials a:hover {
  border-color: var(--gold);
  background: rgba(207, 156, 63, 0.1);
}

.detail-card .socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-deep);
  color: rgba(253, 249, 240, 0.65);
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
}

.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer p {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}