:root {
  --radius: 0.25rem;
  --background: oklch(0.965 0.012 85);
  --foreground: oklch(0.2 0.025 50);
  --card: oklch(0.98 0.008 85);
  --card-foreground: oklch(0.2 0.025 50);
  --primary: oklch(0.25 0.03 60);
  --primary-foreground: oklch(0.965 0.012 85);
  --secondary: oklch(0.92 0.018 80);
  --secondary-foreground: oklch(0.25 0.03 60);
  --muted: oklch(0.93 0.014 82);
  --muted-foreground: oklch(0.45 0.02 60);
  --accent: oklch(0.55 0.09 55);
  --accent-foreground: oklch(0.98 0.008 85);
  --gold: oklch(0.72 0.11 78);
  --border: oklch(0.86 0.02 75);
  --input: oklch(0.86 0.02 75);
  --ring: oklch(0.55 0.09 55);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

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

button,
input {
  font: inherit;
}

.min-h-screen {
  min-height: 100vh;
}

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

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

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

.text-primary-foreground {
  color: var(--primary-foreground);
}

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

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

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-luxe {
  letter-spacing: 0.28em;
}

.not-italic {
  font-style: normal;
}

.font-light {
  font-weight: 300;
}

.grain {
  background-image: radial-gradient(oklch(0.2 0.025 50 / 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
}

.landing {
  position: relative;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark,
.footer-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(0.72 0.11 78 / 0.6);
  border-radius: 999px;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-brand-mark {
  width: 1.75rem;
  height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.header-meta {
  display: none;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: oklch(0.965 0.012 85 / 0.7);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay-right {
  background: linear-gradient(
    to right,
    rgb(0 0 0 / 0.85),
    rgb(0 0 0 / 0.55),
    rgb(0 0 0 / 0.3)
  );
}

.hero-overlay-bottom {
  background: linear-gradient(to top, rgb(0 0 0 / 0.6), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  padding: 0 1.5rem;
  color: var(--primary-foreground);
}

.hero-kicker,
.section-kicker,
.section-label,
.cta-kicker,
.scroll-indicator,
.category-index,
.footer-links {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--gold);
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 28rem;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
  color: oklch(0.965 0.012 85 / 0.8);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin-top: 2.5rem;
}

.hero-input,
.cta-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 0.25rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid oklch(0.965 0.012 85 / 0.4);
  color: var(--primary-foreground);
  outline: none;
  border-radius: 0;
}

.hero-input::placeholder {
  color: oklch(0.965 0.012 85 / 0.5);
}

.hero-input:focus {
  border-bottom-color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 0;
  cursor: pointer;
  transition: background-color 200ms ease;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

.button-gold:hover {
  background: oklch(0.72 0.11 78 / 0.9);
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover,
.footer-link:hover {
  color: var(--accent);
}

.button-primary:hover {
  background: var(--accent);
}

.button:disabled,
.hero-input:disabled,
.cta-input:disabled {
  opacity: 0.6;
  cursor: default;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: oklch(0.965 0.012 85 / 0.5);
}

.scroll-indicator {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  color: oklch(0.965 0.012 85 / 0.6);
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: oklch(0.965 0.012 85 / 0.3);
}

.manifesto-section {
  padding: 7rem 1.5rem;
}

.manifesto-shell {
  max-width: 64rem;
  margin: 0 auto;
}

.manifesto-grid {
  display: grid;
  gap: 3rem;
}

.section-label {
  color: var(--muted-foreground);
}

.manifesto-title {
  font-size: 1.875rem;
  line-height: 1.25;
  color: var(--primary);
}

.categories-section {
  padding: 0 1.5rem 7rem;
}

.categories-shell,
.values-shell {
  max-width: 80rem;
  margin: 0 auto;
}

.categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.section-title {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--primary);
}

.categories-grid {
  display: grid;
  gap: 1.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  background: var(--secondary);
}

.category-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease-out;
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

.category-title {
  font-size: 1.5rem;
  color: var(--primary);
}

.category-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--muted-foreground);
}

.category-index,
.cta-kicker {
  color: var(--gold);
}

.values-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: oklch(0.92 0.018 80 / 0.4);
}

.values-shell {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
}

.value-line {
  width: 2.5rem;
  height: 1px;
  margin-bottom: 1.25rem;
  background: var(--gold);
}

.value-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.value-copy,
.footer-copy {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.final-cta {
  max-width: 48rem;
  margin: 0 auto;
  padding: 7rem 1.5rem;
  text-align: center;
}

.cta-kicker {
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--primary);
}

.signup-form-center {
  margin-right: auto;
  margin-left: auto;
}

.cta-input {
  border-bottom-color: oklch(0.25 0.03 60 / 0.3);
  color: var(--primary);
  text-align: center;
}

.cta-input::placeholder {
  color: var(--muted-foreground);
}

.cta-input:focus {
  border-bottom-color: var(--gold);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  transition: color 200ms ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

@media (min-width: 640px) {
  .signup-form {
    flex-direction: row;
  }

  .cta-input {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .header-meta {
    display: inline;
  }

  .hero-content {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-copy {
    font-size: 1.125rem;
  }

  .scroll-indicator {
    display: flex;
  }

  .manifesto-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .manifesto-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 3rem;
  }

  .section-label {
    grid-column: span 3 / span 3;
  }

  .manifesto-copy {
    grid-column: span 9 / span 9;
  }

  .manifesto-title {
    font-size: 3rem;
  }

  .categories-section {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

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

  .values-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .final-cta {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .cta-title {
    font-size: 3.75rem;
  }

  .site-footer {
    flex-direction: row;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}
