:root {
  /* Palette */
  --color-bg: #14342a;
  --color-gold: #c2a24c;
  --color-gold-bright: #d0b25c;
  --color-cream: #f2eee3;
  --color-cream-dim: #cdd4c9;

  /* Typography */
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --measure: 46rem;
  --logo-max: 26rem;
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2.5rem;
  --space-lg: 4.5rem;
  --space-xl: 7rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: var(--space-xl) var(--space-lg);
}

/* Brand / logo */
.brand {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.brand__logo {
  width: 100%;
  max-width: var(--logo-max);
  margin-inline: auto;
}

/* Story */
.story__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin: 0 0 var(--space-md);
}

.story__body {
  font-size: clamp(1rem, 1.4vw, 1.075rem);
  font-weight: 300;
}

.story__body p {
  margin: 0 0 var(--space-sm);
}

.story__body p:last-child {
  margin-bottom: 0;
}

.story__body em {
  font-style: italic;
  color: var(--color-cream);
}

/* Contact */
.contact {
  text-align: center;
  margin-top: var(--space-xl);
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin: 0 0 var(--space-sm);
}

.contact__enquiry {
  font-weight: 300;
  margin: 0;
}

.contact__enquiry a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.contact__enquiry a:hover,
.contact__enquiry a:focus-visible {
  color: var(--color-gold-bright);
}

/* Footer */
.site-footer {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--color-cream-dim);
  font-size: 0.9rem;
  font-weight: 300;
}

.site-footer p {
  margin: 0.25rem 0;
}

@media (max-width: 40rem) {
  :root {
    --space-xl: 4.5rem;
    --space-lg: 3rem;
  }
}
