:root {
  --brand-gold: #f5ac1b;
  --brand-gold-dark: #d89410;
  --text: #4e5661;
  --text-dark: #2d3238;
  --soft-line: #fbf6ba;
  --page-bg: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.site-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.site-header {
  width: 100%;
  background: #fff;
}

.header-image {
  display: block;
  width: 100%;
  height: auto;
}

.home-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.25rem) 1rem clamp(1.5rem, 4vw, 3rem);
}

.home-copy__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  text-align: center;
}

.home-copy p {
  margin: 0 auto clamp(1rem, 2.5vw, 1.5rem);
  max-width: 980px;
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
  letter-spacing: 0.03em;
}

.home-copy p:last-of-type {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--brand-gold-dark);
}

strong {
  color: var(--text-dark);
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border: 2px solid var(--brand-gold);
  border-radius: 999px;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button--primary {
  background: var(--brand-gold);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: #fff;
}

.button--secondary {
  background: #fff;
  color: var(--text-dark);
}

@media (max-width: 700px) {
  .site-shell {
    overflow: visible;
  }

  .home-copy {
    align-items: start;
    padding-top: 1.35rem;
  }

  .home-copy p {
    max-width: 35rem;
    font-size: clamp(1rem, 4.4vw, 1.18rem);
    line-height: 1.55;
    letter-spacing: 0.015em;
  }

  .cta-row {
    gap: 0.65rem;
  }

  .button {
    width: min(100%, 290px);
  }
}

@media (max-height: 640px) and (orientation: landscape) {
  .site-shell {
    overflow: auto;
  }

  .header-image {
    max-height: 52svh;
    object-fit: cover;
    object-position: top center;
  }

  .home-copy {
    padding-block: 1rem;
  }

  .home-copy p {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .button {
    min-height: 42px;
    padding-block: 0.55rem;
  }
}
