:root {
  --navy: #08285a;
  --navy-deep: #031739;
  --red: #c62828;
  --cream: #f5f1e8;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: white;
  background: var(--navy-deep);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.landing {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--navy-deep);
}

.landing-image,
.landing-overlay {
  position: absolute;
  inset: 0;
}

.landing-image {
  background-image: url("assets/abita-pavilion-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  animation: settle 1.6s ease-out both;
}

@keyframes settle {
  from { transform: scale(1.06); filter: saturate(.78); }
}

.landing-overlay {
  background:
    linear-gradient(90deg, rgba(3,23,57,.96) 0%, rgba(4,29,68,.79) 42%, rgba(4,29,68,.22) 76%),
    linear-gradient(0deg, rgba(3,23,57,.7), transparent 52%);
}

.site-header,
.content,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(255,255,255,.9);
  outline: 1px solid rgba(198,40,40,.9);
  outline-offset: -6px;
  font-family: var(--serif);
  font-size: 25px;
}

.brand-copy { display: grid; line-height: 1; }

.brand-copy strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.brand-copy small,
.location,
.eyebrow,
.site-footer > p {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-copy small { margin-top: 8px; }

.location { color: rgba(255,255,255,.66); }

.content {
  align-self: center;
  padding: 64px 0 74px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.74);
}

.eyebrow span { width: 38px; height: 1px; background: currentColor; }

h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}

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

.intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.84);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 520px);
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.site-footer > p { margin: 0; color: rgba(255,255,255,.62); }

.site-footer small {
  color: rgba(255,255,255,.38);
  font-size: 8px;
  line-height: 1.5;
  text-align: right;
}

.site-footer a { text-underline-offset: 2px; }

@media (max-width: 700px) {
  .site-header,
  .content,
  .site-footer { width: calc(100% - 32px); }

  .site-header { padding-top: 18px; }
  .location { display: none; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 22px; }

  .landing-overlay {
    background:
      linear-gradient(90deg, rgba(3,23,57,.94), rgba(4,29,68,.58)),
      linear-gradient(0deg, rgba(3,23,57,.82), transparent 62%);
  }

  .landing-image { background-position: 63% center; }
  .content { padding: 52px 0 60px; }
  h1 { font-size: clamp(55px, 16vw, 76px); }
  .intro { margin-top: 25px; font-size: 18px; }

  .site-footer { grid-template-columns: 1fr; gap: 12px; }
  .site-footer small { max-width: 500px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
