/* ==========================================
   BRIDLE & BYTE — THEME
   ========================================== */

:root {
  --bg-primary: #f5efe6;
  --bg-dark: #1a2e1e;
  --bg-mid: #243d28;
  --text-primary: #1a2e1e;
  --text-inverted: #f5efe6;
  --accent-gold: #b8960c;
  --accent-brown: #7a4f2d;
  --accent-sage: #4a6741;
  --border-subtle: rgba(26, 46, 30, 0.15);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border-subtle);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__icon {
  font-size: 22px;
  color: var(--accent-gold);
}
.nav__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.nav__amp {
  font-weight: 400;
  color: var(--accent-gold);
}
.nav__tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-sage);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 48px 80px 64px;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(74, 103, 65, 0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(26, 46, 30, 0.025) 40px,
      rgba(26, 46, 30, 0.025) 41px
    );
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 28px;
}
.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin-bottom: 32px;
}
.hero__line {
  display: block;
}
.hero__line--thin {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-sage);
}
.hero__line--bold {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0;
}
.hero__line--outline {
  font-size: clamp(60px, 9vw, 112px);
  font-weight: 700;
  -webkit-text-stroke: 2px var(--text-primary);
  color: transparent;
  line-height: 1;
}
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--accent-brown);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-sage);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 100px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__ornament {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.hero__horse-mark {
  font-size: 200px;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.18;
  user-select: none;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--bg-dark);
  color: var(--text-inverted);
  padding: 100px 64px;
}
.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 32px;
}
.manifesto__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: #e8dcc8;
  border-left: 3px solid var(--accent-gold);
  padding-left: 32px;
  margin-bottom: 40px;
}
.manifesto__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 239, 230, 0.72);
}
.manifesto__body strong {
  color: #e8dcc8;
  font-weight: 500;
}

/* ---- PRODUCTS ---- */
.products {
  padding: 100px 48px;
  background: var(--bg-primary);
}
.products__header {
  margin-bottom: 60px;
}
.products__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.products__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.product-card {
  background: var(--bg-primary);
  padding: 40px 36px;
  transition: background 0.2s;
}
.product-card:hover {
  background: #ede7d8;
}
.product-card--featured {
  grid-column: span 1;
  background: var(--bg-dark);
  color: var(--text-inverted);
  position: relative;
}
.product-card--featured .product-card__desc { color: rgba(245, 239, 230, 0.65); }
.product-card--featured .tag { border-color: rgba(245, 239, 230, 0.25); color: rgba(245, 239, 230, 0.6); }
.product-card__icon {
  font-size: 28px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  line-height: 1;
}
.product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.product-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--accent-brown);
  margin-bottom: 24px;
}
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--accent-sage);
}

/* ---- APPROACH ---- */
.approach {
  background: #ede7d8;
  padding: 100px 64px;
}
.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.approach__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.approach__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  position: sticky;
  top: 40px;
}
.approach__points { display: flex; flex-direction: column; gap: 0; }
.approach__point {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: flex-start;
}
.approach__point:first-child { border-top: 1px solid var(--border-subtle); }
.approach__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.approach__point-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.approach__point-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--accent-brown);
}

/* ---- CLOSING ---- */
.closing {
  background: var(--bg-dark);
  color: var(--text-inverted);
  padding: 120px 64px;
  text-align: center;
}
.closing__inner { max-width: 680px; margin: 0 auto; }
.closing__divider {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 40px;
}
.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: #e8dcc8;
  margin-bottom: 24px;
}
.closing__headline em {
  font-weight: 400;
  color: var(--accent-gold);
}
.closing__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 239, 230, 0.55);
  line-height: 1.7;
}
.closing__orbs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.closing__orb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.4;
}
.closing__orb:nth-child(2) { opacity: 0.7; width: 14px; height: 14px; }
.closing__orb:nth-child(3) { opacity: 0.4; }

/* ---- FOOTER ---- */
.footer {
  background: #0f1c12;
  color: rgba(245, 239, 230, 0.4);
  padding: 48px;
  text-align: center;
}
.footer__mark {
  font-size: 28px;
  color: var(--accent-gold);
  opacity: 0.4;
  margin-bottom: 16px;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(245, 239, 230, 0.6);
  margin-bottom: 6px;
}
.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.3);
}
.footer__sep { color: rgba(245, 239, 230, 0.15); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { flex-direction: column; padding: 60px 24px; min-height: auto; gap: 40px; }
  .hero__ornament { display: none; }
  .manifesto { padding: 64px 24px; }
  .products { padding: 64px 24px; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .approach { padding: 64px 24px; }
  .approach__inner { grid-template-columns: 1fr; gap: 40px; }
  .approach__title { position: static; }
  .closing { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .products__grid { grid-template-columns: 1fr; }
  .hero__line--bold { font-size: 42px; }
  .hero__line--outline { font-size: 64px; }
}