@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/caveat-variable.woff2") format("woff2");
}

:root {
  --green: #1f5136;
  --green-dark: #173e29;
  --green-soft: #e9f0eb;
  --cream: #f9f6ef;
  --sand: #efe9dc;
  --gold: #c8a96a;
  --ink: #1a1f1c;
  --muted: #64706a;
  --white: #ffffff;
  --line: #e2dccf;
  --shadow: 0 28px 80px rgba(23, 62, 41, 0.18);
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-dark);
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: 4.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.35rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.1rem 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 38px;
  padding: 0.3rem 1rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(23, 62, 41, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px 8px 0 0;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.topbar a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-overlay {
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: saturate(140%) blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 11.5rem 0 6rem;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 62, 41, 0.88), rgba(23, 62, 41, 0.62) 52%, rgba(23, 62, 41, 0.36)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.notice,
.preview,
.legal,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  margin-inline: auto;
}

.script {
  margin-bottom: 0.8rem;
  font-family: var(--font-script);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: clamp(1.25rem, 3vh, 2.5rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  border-radius: 4px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  color: var(--green-dark);
  background: var(--white);
}

.notice {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.notice-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.preview {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
  padding: 6.5rem 0;
}

.preview-text p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.65rem;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 169, 106, 0.16);
}

.preview-photo {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.legal {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.legal-grid > div {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  font-weight: 800;
}

.footer-credit {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-credit a {
  font-weight: 700;
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    position: relative;
    width: 100%;
    padding: 0;
    background: var(--green-dark);
  }

  .topbar {
    border-radius: 0;
    flex-wrap: wrap;
  }

  .nav-overlay {
    gap: 0.9rem;
    border-radius: 0;
    padding: 1rem 20px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 620px;
    padding-top: 5.5rem;
  }

  .notice-panel,
  .preview,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .preview {
    gap: 2rem;
    padding: 4.5rem 0;
  }

}

@media (max-width: 560px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 580px;
    padding-bottom: 4rem;
  }

  .cta-row {
    padding-bottom: 1.5rem;
  }

  .script {
    font-size: 2.05rem;
  }

  .notice-panel {
    padding: 1.35rem;
  }

  .legal-grid > div {
    padding: 1.1rem;
  }
}
