:root {
  --brown: #3B2F2A;
  --warm-brown: #5A4B3D;
  --sage: #7D9B76;
  --gold: #C9A96E;
  --cream: #FAF6F0;
  --off-white: #F5EFE8;
  --white: #FFFFFF;
  --text-dark: #3B2F2A;
  --text-mid: #5A4B3D;
  --text-light: #7D6B62;
  --border: #E4DACB;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: "Georgia", serif; color: var(--brown); margin: 0 0 0.5em; line-height: 1.25; }
p { margin: 0 0 1em; }
a { color: var(--warm-brown); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--dark { background: var(--brown); color: var(--off-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--alt { background: var(--off-white); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--sage);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn--primary { background: var(--brown); color: var(--cream); }
.btn--primary:hover { background: var(--warm-brown); }
.btn--outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--outline:hover { background: var(--cream); color: var(--brown); }
.btn--sage { background: var(--sage); color: var(--white); }
.btn--sage:hover { background: #6b8865; }
.btn--small { padding: 8px 16px; font-size: 0.72rem; }

/* Header */
.site-header__bar {
  background: var(--brown);
  color: var(--off-white);
  font-size: 0.8rem;
}
.site-header__bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header__bar a { color: var(--off-white); text-decoration: none; }
.site-header__bar a:hover { color: var(--gold); }
.site-header__main {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.site-header__main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 56px; width: auto; }
.brand span { font-size: 1.3rem; letter-spacing: 0.04em; color: var(--brown); }
nav.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
}
nav.main-nav a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--warm-brown);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] {
  color: var(--brown);
  border-bottom-color: var(--sage);
}

/* Hero */
.hero {
  position: relative;
  color: var(--cream);
  display: flex;
  align-items: center;
  min-height: 62vh;
  overflow: hidden;
}
.hero video, .hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,47,42,0.55), rgba(59,47,42,0.75));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero p { font-size: 1.1rem; color: var(--off-white); }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }

/* Simple page header (non-video) */
.page-hero {
  background: var(--brown);
  color: var(--cream);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--off-white); max-width: 640px; margin: 0 auto; }

/* Grids */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--off-white); }
.card__body { padding: 16px; }
.card__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.card__desc { font-size: 0.88rem; color: var(--text-light); }

/* Shop */
.shop-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.shop-toolbar input[type="search"] {
  flex: 1;
  min-width: 220px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
}
.shop-toolbar .count { font-size: 0.85rem; color: var(--text-light); white-space: nowrap; }
.product-card { position: relative; }
.product-card .no-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  font-family: Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 12px;
}
.product-card .price { font-weight: bold; color: var(--warm-brown); margin: 6px 0; }
.product-card .oos-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 2px;
  font-family: Helvetica, Arial, sans-serif;
}
.product-card .etsy-link { display: inline-block; margin-top: 8px; font-size: 0.8rem; }

/* Footer */
.site-footer {
  background: var(--brown);
  color: var(--off-white);
  padding: 48px 0 24px;
  margin-top: 64px;
}
.site-footer h4 { color: var(--cream); font-family: Helvetica, Arial, sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: var(--off-white); text-decoration: none; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.social-icons { display: flex; gap: 12px; margin-top: 8px; }
.social-icons a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* Content pages */
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.credential-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 800px) { .credential-grid { grid-template-columns: repeat(2, 1fr); } }
.credential-grid img { border: 1px solid var(--border); border-radius: 4px; }

.callout {
  background: var(--off-white);
  border-left: 4px solid var(--sage);
  padding: 20px 24px;
  border-radius: 3px;
  margin: 24px 0;
}

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid img { aspect-ratio: 1/1; object-fit: cover; border-radius: 3px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 750px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dt { font-family: Helvetica, Arial, sans-serif; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--sage); margin-top: 18px; }
.contact-info dd { margin: 4px 0 0; }
