:root {
  --background: #282922;
  --foreground: #93585e;
  --muted-foreground: #a9cc8b;
  --secondary: #f2cfcd;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;

  --card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* IMPORTANT */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

main {
  max-width: 1200px;
  margin: auto;
}

/* MOBILE */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  transition:
    background 0.6s ease,
    backdrop-filter 0.6s ease,
    border-color 0.6s ease;

  background: transparent;
}

.site-nav.scrolled {
  background: rgba(250, 249, 249, 0.021);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 250, 245, 0.041);
}

.nav-inner {
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;

  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* MOBILE */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  transition:
    background 0.6s ease,
    backdrop-filter 0.6s ease,
    border-color 0.6s ease;

  background: transparent;
}

.site-nav.scrolled {
  background: rgba(250, 249, 249, 0.021);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 250, 245, 0.041);
}

.nav-inner {
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;

  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* MOBILE */

.mobile-toggle {
  display: none;

  background: none;
  border: none;
  color: var(--foreground);

  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;

  padding-top: 80px; /* same as navbar height */

  background: var(--background);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 32px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3rem;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(240, 237, 232, 0.08);

  padding: 6rem 1.5rem 0rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 10%;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;

  margin-bottom: 1rem;
}

.footer-text {
  color: var(--muted-foreground);
  max-width: 260px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;

  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 237, 232, 0.05);

  margin-top: 5rem;
  padding: 2rem;

  display: flex;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero {
  min-height: 75vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: 850px;

  margin: auto;
  padding: 12px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;

  color: var(--muted-foreground);

  margin-bottom: 25px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;

  font-size: clamp(1.5rem, 9vw, 4rem);

  max-width: 900px;

  margin-bottom: 35px;
}

.hero p {
  max-width: 550px;
  font-size: 0.95rem;
  line-height: 2;

  color: var(--muted-foreground);
}

.policy-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.policy-card {
  padding: 40px;

  border: 1px solid var(--border);

  background: var(--card);

  transition: 0.45s;

  opacity: 0;

  transform: translateY(50px);
}

.policy-card.visible {
  opacity: 1;

  transform: translateY(0);
}

.policy-card:hover {
  transform: translateY(-8px);

  border-color: var(--foreground);
}

.policy-card span {
  font-size: 0.75rem;

  letter-spacing: 0.3em;

  opacity: 0.5;
}

.policy-card h2 {
  font-family: var(--font-heading);

  font-weight: 300;

  font-size: 2rem;

  margin: 15px 0;
}

.policy-card p {
  line-height: 1.9;

  color: var(--muted-foreground);
}

.statement {
  padding: 150px 0;

  text-align: center;

  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s;
}

.statement.visible {
  opacity: 1;

  transform: none;
}

blockquote {
  font-family: var(--font-heading);

  font-style: italic;

  font-size: clamp(2rem, 5vw, 4rem);

  max-width: 900px;

  margin: auto;

  line-height: 1.2;
}

@media (max-width: 768px) {
  main {
    padding: 120px 20px 80px;
  }

  .hero {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
