/* ---------- tokens ---------- */
:root{
  --ink: #241812;
  --maroon: #7A2331;
  --maroon-dark: #56141F;
  --brass: #B9862F;
  --brass-light: #D9AA5D;
  --ivory: #F7EFE3;
  --stone: #ECE0CC;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, "Segoe UI", sans-serif;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; }

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible{
  outline: 3px solid var(--brass-light);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn__icon{ width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

.btn--primary{
  background: #25D366;
  color: #0b3d1f;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45); }

.btn--large{ font-size: 1.1rem; padding: 1rem 2rem; }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  color: var(--ivory);
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
}

.hero__scrim{
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(180deg, rgba(20,12,8,0.75) 0%, rgba(20,12,8,0.55) 40%, rgba(20,12,8,0.88) 100%);
}

.hero__nav, .hero__content{ position: relative; z-index: 1; }

.hero__nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  gap: 1rem;
}

.mark{
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav-cta{
  display: none;
}

.hero__content{
  margin-top: auto;
  padding: 2.5rem 1.5rem 3.5rem;
  max-width: 42rem;
}

.hero__content h1{
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-weight: 500;
}

.hero__sub{
  font-size: 1.05rem;
  color: #EFE3D6;
  max-width: 34rem;
  margin: 1.1rem 0 1.8rem;
}

/* ---------- products ---------- */
.products{
  background: var(--stone);
  padding: 3.5rem 1.25rem;
}

.products__grid{
  display: grid;
  gap: 1.25rem;
  max-width: 60rem;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.product{
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.product img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__label{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, rgba(20,12,8,0) 0%, rgba(20,12,8,0.82) 75%);
  color: var(--ivory);
}

.product__label h3{
  font-size: 1.5rem;
  color: var(--brass-light);
}

.product__label p{
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #EFE3D6;
}

/* ---------- about ---------- */
.about{
  padding: 4rem 1.25rem;
}

.about__inner{
  max-width: 38rem;
  margin: 0 auto;
}

.about h2{
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: var(--maroon);
}

.about__lead{
  font-size: 1.15rem;
  margin: 1rem 0 0;
  color: #4A3A2E;
}

.badges{
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.badges li{
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon-dark);
}

.badges li::before{
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brass);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.about__body{
  margin: 1.4rem 0;
  color: #4A3A2E;
}

.tags{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass);
  margin: 1.6rem 0;
}

/* ---------- order cta ---------- */
.order-cta{
  background: var(--maroon);
  color: var(--ivory);
  text-align: center;
  padding: 4rem 1.5rem;
}

.order-cta h2{
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  color: var(--ivory);
}

.order-cta p{
  color: #EAD6C8;
  margin: 0.9rem 0 2rem;
}

/* ---------- footer ---------- */
.site-footer{
  background: var(--ink);
  color: #C9B8A6;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}

.site-footer__social{
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.site-footer__social a{
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(247, 239, 227, 0.08);
  transition: background 0.15s ease;
}

.site-footer__social a:hover{ background: var(--brass); }

.site-footer__social svg{
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--ivory);
}

.site-footer__name{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
  margin: 0 0 0.35rem;
}

.site-footer__meta{
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- responsive: tablet and up ---------- */
@media (min-width: 640px){
  .products__grid{ grid-template-columns: 1fr 1fr; }
  .nav-cta{
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(247,239,227,0.5);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
  }
  .nav-cta:hover{ border-color: var(--brass-light); color: var(--brass-light); }
}

@media (min-width: 900px){
  .hero__content{ padding-left: 3rem; padding-bottom: 5rem; }
  .hero__nav{ padding: 2rem 3rem; }
}
