:root {
  --bg: #fff;
  --cream: #fdf6ee;
  --sand: #f0e6d6;
  --dark: #1a1210;
  --text: #1a1210;
  --muted: #6b5e54;
  --accent: #b55a30;
  --accent-hover: #9a4620;
  --gold: #c9922e;
  --border: #e4ddd5;
  --max: 1140px;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a { color: inherit; transition: color .2s; }
main a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
main a:not(.btn):hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.18;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); margin-bottom: .85rem; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); margin-bottom: .6rem; }

p { margin: .6rem 0; }
ul, ol { padding-left: 1.3rem; }
li + li { margin-top: .3rem; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ───── Skip link ───── */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--dark); color: #fff; padding: .5rem .75rem; z-index: 200; border-radius: var(--radius); }

/* ───── Header / Nav ───── */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .75rem 0;
}

.logo-link { display: flex; align-items: center; }
.logo-link img { width: 130px; }

.menu-toggle {
  display: none; background: none; border: 1.5px solid var(--text);
  padding: .35rem .7rem; border-radius: var(--radius); font-size: .95rem;
  font-family: inherit; cursor: pointer; letter-spacing: .02em;
}

.site-nav ul {
  list-style: none; display: flex; gap: 1.6rem;
  align-items: baseline;
}
.site-nav li {
  line-height: 1;
}

.site-nav a {
  text-decoration: none; font-size: .95rem; font-weight: 500;
  letter-spacing: .01em; padding: .25rem 0;
  display: inline-block; vertical-align: baseline;
}

.site-nav > ul > li > a { position: relative; }
.site-nav > ul > li > a::after {
  content: ""; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width .25s;
}
.site-nav > ul > li > a:hover::after,
.site-nav > ul > li > a:focus::after { width: 100%; }

.dropdown { position: relative; }

.dropdown-menu {
  display: none; position: absolute; top: 100%; left: -1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: .6rem 0; min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: -1rem; height: 1rem;
}

.dropdown-menu a {
  display: block; padding: .45rem 1rem; font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--accent); }

.dropdown:focus-within .dropdown-menu,
.dropdown:hover .dropdown-menu { display: block; }

/* ───── Buttons ───── */
.btn {
  display: inline-block; padding: .75rem 1.6rem;
  background: var(--accent); color: #fff;
  text-decoration: none; border: none; border-radius: var(--radius);
  font-family: inherit; font-size: .95rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #2e2420; }

.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: var(--cream); }

/* ───── Full-bleed hero ───── */
.hero-full {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  overflow: hidden;
}
.hero-full.hero-home { min-height: 72vh; }
.hero-full::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,18,16,.78), rgba(181,90,48,.62));
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 2rem 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .6rem;
}
.hero-content h1,
.hero-content p { text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.hero-content p { font-size: 1.15rem; opacity: .94; margin-bottom: 1.5rem; }
.hero-content .btn { font-size: 1rem; padding: .85rem 2rem; }

/* ───── Sections ───── */
.section { padding: 4.5rem 0; }
.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark a:not(.btn) { color: var(--gold); }
.section-accent { background: var(--accent); color: #fff; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,.7); }

/* ───── Two-column feature ───── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center;
}
.mission-feature-top { align-items: start; }
.mission-feature-top .feature-img { align-self: start; }
.feature-img { border-radius: var(--radius); overflow: hidden; }
.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.feature-img:hover img { transform: scale(1.03); }
.feature-text h2 { margin-bottom: .75rem; }
.feature-text p { color: var(--muted); margin-bottom: 1.25rem; }

/* ───── Quote ───── */
.quote-block {
  max-width: 780px; margin: 0 auto;
  text-align: center; padding: 1rem 0;
}
.quote-block blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.5; font-style: italic;
  position: relative; padding: 0 1.5rem;
}
.quote-block blockquote::before {
  content: "\201C"; position: absolute; top: -.3em; left: -.1em;
  font-size: 4rem; color: var(--accent); opacity: .35; font-style: normal;
}
.quote-block cite {
  display: block; margin-top: 1rem;
  font-style: normal; font-size: .95rem; color: var(--muted);
}
.section-dark .quote-block cite { color: rgba(255,255,255,.6); }

/* ───── Cards (general) ───── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }

.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img { object-fit: contain !important; object-position: center; }

.card-body { padding: 1.5rem; }
.card-body h2, .card-body h3 { font-size: 1.25rem; }

/* ───── Product cards ───── */
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--accent); margin: .5rem 0 1rem; }

/* ───── Team member ───── */
.team-member {
  display: grid; grid-template-columns: 340px 1fr; gap: 2.5rem;
  align-items: start;
}
.team-member + .team-member { margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--border); }
.team-photo { border-radius: var(--radius); overflow: hidden; }
.team-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-meta { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.team-bio p { font-size: .97rem; color: #2a2220; }
.team-fav { margin-top: 1rem; padding: 1rem 1.25rem; background: var(--cream); border-radius: var(--radius); font-size: .95rem; }

/* ───── Editor grid (3-col desktop, 1-col mobile) ───── */
.editor-grid { grid-template-columns: repeat(3, 1fr); }

/* ───── Guest editor cards ───── */
.editor-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.editor-card-img { aspect-ratio: 1/1; overflow: hidden; }
.editor-card-img img { width: 100%; height: 100%; object-fit: cover; }
.editor-card-body { padding: 1.5rem; }
.editor-card-body h3 { margin-bottom: .2rem; }
.editor-role { color: var(--accent); font-weight: 600; font-size: .9rem; margin-bottom: .75rem; }
.editor-looking {
  margin-top: 1rem; padding: 1rem; background: var(--cream);
  border-radius: var(--radius); font-size: .93rem; font-style: italic;
}

/* ───── FAQ sections ───── */
.faq-section h3 {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.faq-section h3:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.faq-section p { color: #3a3230; }

/* ───── Submissions spacing (editorial rhythm) ───── */
.submission-guidelines h2 { margin-bottom: 1.55rem; }
.submission-guidelines h3 {
  margin-top: 1.6rem;
  margin-bottom: .95rem;
}
.submission-guidelines ul,
.submission-guidelines ol { margin-top: .65rem; }

/* ───── Newsletter section ───── */
.newsletter {
  text-align: center;
}
.newsletter h2 { margin-bottom: .4rem; }
.newsletter .lead { color: var(--muted); margin-bottom: 1.5rem; }
.newsletter form {
  display: flex; flex-wrap: wrap; gap: .6rem;
  max-width: 560px; margin: 0 auto;
  justify-content: center;
}
.newsletter input {
  flex: 1 1 150px; padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius);
  font: inherit; font-size: .95rem;
}
.section-dark .newsletter input {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2);
}
.section-dark .newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter .btn { flex: 0 0 auto; }

/* ───── Forms (contact) ───── */
.form-stack {
  display: grid; gap: .85rem; max-width: 600px;
}
.form-stack input, .form-stack textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font: inherit; font-size: .95rem;
  transition: border-color .2s;
}
.form-stack input:focus, .form-stack textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-stack textarea { min-height: 140px; resize: vertical; }

/* ───── Inline label ───── */
.label-tag {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .5rem;
}
.section-dark .label-tag { color: var(--gold); }

/* ───── Checklist ───── */
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 1.5rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

/* ───── Cart toggle (nav) ───── */
.cart-toggle {
  background: none; border: 1.5px solid var(--text); border-radius: var(--radius);
  padding: .3rem .8rem; font: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; letter-spacing: .01em; transition: background .2s, color .2s;
}
.cart-toggle:hover { background: var(--dark); color: #fff; }
.cart-count { font-weight: 700; }

/* ───── Cart drawer ───── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 90vw;
  background: #fff; z-index: 200;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-inner {
  display: flex; flex-direction: column; height: 100%;
}
.cart-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-drawer-header h2 {
  font-size: 1.25rem; margin: 0;
}
.cart-close {
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
  line-height: 1; padding: 0; color: var(--text);
}

.cart-items {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
}
.cart-empty { color: var(--muted); text-align: center; padding: 2rem 0; }

.cart-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.cart-item-price { font-size: .9rem; color: var(--accent); font-weight: 600; }

.cart-item-qty {
  display: flex; align-items: center; gap: .4rem; margin-top: .4rem;
}
.cart-item-qty button {
  background: var(--cream); border: 1px solid var(--border); border-radius: 3px;
  width: 28px; height: 28px; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-qty span { font-size: .9rem; min-width: 1.5rem; text-align: center; }

.cart-item-remove {
  background: none; border: none; color: var(--muted); font-size: .8rem;
  cursor: pointer; text-decoration: underline; margin-top: .3rem;
}
.cart-item-remove:hover { color: var(--accent); }

.cart-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; font-weight: 700;
  font-size: 1.05rem; margin-bottom: .3rem;
}
.cart-shipping-note {
  font-size: .82rem; color: var(--muted); margin-bottom: 1rem;
}
.cart-checkout-btn { width: 100%; text-align: center; }

/* ───── Footer ───── */
footer {
  background: var(--dark); color: rgba(255,255,255,.65);
  padding: 2.5rem 0; font-size: .85rem; line-height: 1.6;
}

/* ───── Responsive ───── */
@media (max-width: 900px) {
  .hero-full { min-height: 60vh; }
  .hero-full.hero-home { min-height: 58vh; }
  .feature { grid-template-columns: 1fr; gap: 2rem; }
  .team-member { grid-template-columns: 1fr; }
  .team-photo img { aspect-ratio: 1/1; max-width: 320px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column; align-items: stretch; padding: 1rem 1.5rem; gap: .2rem;
  }
  .site-nav a { display: block; padding: .6rem 0; }
  .dropdown-menu {
    position: static; box-shadow: none; border: none; padding: 0 0 0 1rem;
  }
  .section { padding: 3rem 0; }
  .card-grid, .editor-grid { grid-template-columns: 1fr; }
  .card-img { aspect-ratio: 3/2; }
  .hero-full.hero-home { min-height: 52vh; }

  /* On mobile, show the mission image above the text for readability */
  .mission-feature { grid-template-columns: 1fr; grid-template-areas: "image" "text"; }
  .mission-feature .feature-img { grid-area: image; }
  .mission-feature .feature-text { grid-area: text; }
  .mission-feature-below { grid-template-areas: "text" "image"; }
}
