/* horseness.com — stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --gold:       #c9943a;
  --gold-light: #e8c87a;
  --cream:      #f7f1e6;
  --tan:        #b8a98e;
  --muted:      #9e907a;
  --dim:        #7a6e5e;
  --faint:      #4a4035;
  --page-bg:    #0d0a06;
  --card-bg:    rgba(255, 255, 255, 0.025);
  --border:     rgba(200, 170, 100, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--page-bg);
  color: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.9;
}

.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav__link:hover {
  opacity: 1;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 7, 3, 0.93) 0%,
    rgba(10, 7, 3, 0.45) 55%,
    rgba(10, 7, 3, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 3rem 5rem;
  max-width: 720px;
  animation: fadeUp 1.1s ease both;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtext {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--tan);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #1a1007;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-ghost {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 180, 140, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(200, 180, 140, 0.7);
}

/* ── Divider ── */

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 3rem;
}

/* ── Sections ── */

.section {
  padding: 6rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.section__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #f0e8d8;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  max-width: 680px;
}

.section__body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  max-width: 600px;
}

.section__body + .section__body {
  margin-top: 1rem;
}

/* ── Cards ── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--card-bg);
  transition: border-color 0.25s, background 0.25s;
}

.card:hover {
  border-color: rgba(200, 170, 100, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.card__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(200, 148, 58, 0.28);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card__title {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d4c4a8;
  margin-bottom: 0.6rem;
}

.card__text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--dim);
}

/* ── Quote ── */

.quote-section {
  padding: 5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.55;
  color: #d8c9ae;
  margin-bottom: 1.25rem;
}

.quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Footer ── */

.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(200, 170, 100, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--faint);
  letter-spacing: 0.1em;
}

.footer__note {
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.06em;
}

/* ── Animations ── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .nav {
    padding: 1.5rem;
  }

  .hero__content {
    padding: 0 1.5rem 3.5rem;
  }

  .divider {
    margin: 0 1.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .quote-section {
    padding: 3.5rem 1.5rem;
  }

  .footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
