@import url('https://api.fontshare.com/v2/css?f[]=alpino@400,500,600,700&f[]=chillax@400,500,600&f[]=switzer@300,400,500&display=swap');

:root {
  --lily: #EDE599;
  --amber: #C7A003;
  --green: #3D4E17;
  --night: #151F1E;
  --pale: #F9F7DC;
  --midgreen: #6B7A3A;
  --border: #E8E6C8;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(21, 31, 30, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Switzer', sans-serif;
  background: var(--pale);
  color: var(--night);
  line-height: 1.6;
}

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

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

/* ── TYPOGRAPHY ─────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Alpino', sans-serif;
  line-height: 1.2;
}

/* ── NAVBAR ─────────────────────── */
nav {
  background: var(--night);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--amber);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--border);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

.nav-cta {
  background: var(--amber);
  color: var(--night) !important;
  font-weight: 500 !important;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--lily) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lily);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ─────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Switzer', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--night);
}

.btn-primary:hover {
  background: var(--lily);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--lily);
  border: 1.5px solid var(--lily);
}

.btn-outline:hover {
  background: var(--lily);
  color: var(--night);
}

.btn-dark {
  background: var(--night);
  color: var(--lily);
}

.btn-dark:hover {
  background: var(--green);
}

/* ── SECTION TITLES ──────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Alpino', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--night);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  color: var(--amber);
  font-style: normal;
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--green);
  line-height: 1.7;
  max-width: 560px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px 0;
}

/* ── CARDS ───────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ── FOOTER ──────────────────────── */
footer {
  background: var(--night);
  padding: 56px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(237, 229, 153, 0.1);
  margin-bottom: 32px;
}

.footer-brand-tag {
  font-size: 12px;
  font-weight: 300;
  color: var(--midgreen);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Alpino', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--lily);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: var(--midgreen);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--midgreen);
}

.footer-bottom span {
  color: var(--amber);
}

/* ── HERO SHARED ─────────────────── */
.page-hero {
  background: var(--night);
  padding: 80px 5%;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--lily);
  margin-bottom: 16px;
}

.page-hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: var(--border);
  max-width: 560px;
  margin: 0 auto;
}

/* ── UTILITIES ───────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 80px 5%;
}

.section-center {
  text-align: center;
}

.section-center .section-sub {
  margin: 0 auto;
}

.section-center .divider {
  margin: 16px auto;
}

.text-amber {
  color: var(--amber);
}

.text-green {
  color: var(--green);
}

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

.bg-night {
  background: var(--night);
}

.bg-pale {
  background: var(--pale);
}

.bg-white {
  background: var(--white);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--night);
    padding: 24px 5%;
    gap: 20px;
    border-bottom: 2px solid var(--amber);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}