:root {
  --bg: #f3efe6;
  --bg-deep: #e6dfd1;
  --ink: #1e1c17;
  --muted: #5f5a51;
  --accent: #b07a3b;
  --accent-dark: #8b5c28;
  --olive: #2f3a2f;
  --cream: #fdf9f1;
  --shadow: rgba(23, 18, 10, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f8f3ea 0%, var(--bg) 60%, var(--bg-deep) 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.grain {
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(120, 92, 55, 0.05) 0,
    rgba(120, 92, 55, 0.05) 2px,
    transparent 2px,
    transparent 6px
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 239, 230, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(80, 60, 30, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 20px;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 160px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 16px rgba(24, 18, 12, 0.15);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--olive);
  color: #fff;
}

.btn-solid:hover {
  background: #222b22;
}

.btn-ghost {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}

.btn-ghost:hover {
  background: rgba(47, 58, 47, 0.08);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.1);
}

main {
  overflow: hidden;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--ink);
}

.lead {
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.metric {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-panel {
  background: var(--cream);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-panel h3 {
  margin-bottom: 8px;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-image {
  height: 280px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(176, 122, 59, 0.2), rgba(34, 43, 34, 0.2));
  box-shadow: 0 18px 30px var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-row,
.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.price-note {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.details {
  padding: 70px 0 60px;
  background: rgba(47, 58, 47, 0.04);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.detail-cards {
  display: grid;
  gap: 16px;
}

.detail-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(26, 20, 12, 0.08);
}

.fit {
  padding: 70px 0;
}

.maker {
  padding: 70px 0 50px;
}

.maker-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.maker-photo {
  background: var(--cream);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 30px rgba(22, 16, 10, 0.12);
}

.maker-photo img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.fit-list ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.fit-list li {
  margin-bottom: 10px;
}

.fit-card {
  background: var(--cream);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(22, 16, 10, 0.1);
}

.fit-card h3 {
  margin-top: 0;
}

.media {
  padding: 60px 0 70px;
  background: rgba(176, 122, 59, 0.08);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.media-embeds {
  display: grid;
  gap: 18px;
}

.media-embed {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(32, 24, 16, 0.1);
  box-shadow: 0 10px 20px rgba(24, 18, 12, 0.08);
}

.media-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.embed-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta {
  padding: 80px 0;
  background: var(--olive);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.cta p,
.cta h2 {
  color: #fff;
}

.cta-actions {
  display: grid;
  gap: 12px;
  align-items: start;
  justify-items: start;
}

.cta .price {
  color: #fff;
}

.cta .price-note {
  color: #f0ece4;
}

.cta-image {
  width: min(300px, 100%);
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(22, 16, 10, 0.2);
}

.cta .btn-solid {
  background: #fff;
  color: var(--olive);
}

.cta .btn-solid:hover {
  background: #f0ece4;
}

.cta-note {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e4ded2;
}

.cta-email {
  font-weight: 600;
}

.faq {
  padding: 70px 0 90px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--cream);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(24, 18, 12, 0.08);
}

.faq-single {
  background: var(--cream);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(24, 18, 12, 0.1);
  max-width: 760px;
}

.site-footer {
  background: #1b1a16;
  color: #d8d4ca;
  padding: 50px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.footer-note {
  font-size: 12px;
  color: #bcb7ac;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

@media (max-width: 960px) {
  .hero-grid,
  .details-grid,
  .maker-grid,
  .fit-grid,
  .media-grid,
  .cta-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .media-embed {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
