:root{
  --bg: #f6f1ea;
  --bg-soft: #efe7dc;
  --card: #fffdf9;
  --text: #2f241d;
  --muted: #74665b;
  --line: #d8c8b8;
  --accent: #8a6646;
  --accent-dark: #6f5138;
  --accent-soft: #e7d7c6;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(45, 28, 14, 0.10);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

.container{
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 102, 70, 0.12);
}

.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.brand-text{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title{
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
}

.brand-sub{
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 3px;
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: .2s ease;
}

.nav-link:hover{
  background: var(--bg-soft);
  color: var(--text);
}

.nav-link.is-active{
  background: #eadfd2;
  color: var(--accent-dark);
}

.nav-etsy{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(111, 81, 56, 0.18);
}

.nav-etsy:hover{
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Main */

.main{
  display: block;
}

/* Hero */

.hero{
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(138,102,70,0.08), transparent 28%),
    linear-gradient(to bottom, #f8f3ec 0%, var(--bg) 100%);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}

.hero-copy{
  max-width: 640px;
}

.kicker{
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1{
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lead{
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-art{
  display: flex;
  justify-content: center;
}

.hero-logo{
  width: min(100%, 410px);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(42, 25, 12, 0.18);
  border: 1px solid rgba(0,0,0,.05);
}

.button-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
}

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(111, 81, 56, 0.16);
}

.btn-primary:hover{
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  color: var(--accent-dark);
}

.btn-secondary:hover{
  background: var(--bg-soft);
}

/* Sections */

.section{
  padding: 24px 0 80px;
}

.center-narrow{
  max-width: 820px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.section-label{
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card h2{
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.card p{
  margin: 0 0 18px;
  color: #43372d;
}

.card p:last-child{
  margin-bottom: 0;
}

.mission-card{
  position: relative;
  overflow: hidden;
}

.mission-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--accent), #c38a59);
}

/* Footer */

.site-footer{
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: #f1e9de;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 20px;
}

.footer-copy{
  max-width: 620px;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo{
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

.footer-title{
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.footer-copy p{
  margin: 0;
  color: var(--muted);
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}

.footer-links a{
  color: var(--accent-dark);
  font-weight: 700;
}

.footer-links a:hover{
  text-decoration: underline;
}

.footer-bottom{
  padding: 0 0 26px;
}

.footer-bottom p{
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy{
    max-width: none;
  }

  .hero-art{
    justify-content: flex-start;
  }

  .hero-logo{
    width: min(100%, 320px);
  }
}

@media (max-width: 760px){
  .nav-wrap{
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav{
    flex-wrap: wrap;
  }

  .footer-inner{
    flex-direction: column;
  }
}

@media (max-width: 560px){
  .container{
    width: min(100% - 22px, var(--max));
  }

  .brand-logo{
    width: 48px;
    height: 48px;
  }

  .brand-title{
    font-size: 1.2rem;
  }

  .brand-sub{
    font-size: 0.86rem;
  }

  .hero{
    padding: 56px 0 40px;
  }

  .card{
    padding: 24px;
  }

  .btn{
    width: 100%;
  }
}

.hero-shop{
  padding-bottom: 34px;
}

.shop-intro{
  margin-bottom: 28px;
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card{
  display:flex;
  flex-direction:column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.product-image-wrap{
  display:block;
  background: #f3ece3;
}

.product-image{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content{
  padding: 22px;
}

.product-type{
  margin: 0 0 8px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-card h2{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.15;
}

.product-card h2 a:hover{
  color: var(--accent-dark);
}

.product-text{
  margin: 0 0 18px;
  color: var(--muted);
}

.product-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}

@media (max-width: 820px){
  .product-grid{
    grid-template-columns: 1fr;
  }
}