:root {
  --brand-red: #a8302a;
  --brand-red-dark: #7c231e;
  --brand-gold: #ab8c52;
  --brand-gold-light: #edc67b;
  --ink: #212121;
  --paper: #ffffff;
  --cream: #faf6ef;
  --border: #e7ded0;
  --radius-pill: 999px;
  --shadow: 0 6px 20px rgba(33, 33, 33, 0.08);
  font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  margin: 0 0 0.4em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: inherit; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Portfolio disclaimer banner ---------- */
.portfolio-banner {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 16px;
}

.portfolio-banner strong { color: var(--brand-gold-light); }

/* ---------- Header ---------- */
.site-header {
  background: var(--brand-red);
  color: #fff;
  padding: 18px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-tagline {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.main-nav a:hover {
  border-color: var(--brand-gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

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

.btn-primary {
  background: var(--brand-gold);
  color: #fff;
}

.btn-primary:hover { box-shadow: 0 6px 16px rgba(171, 140, 82, 0.4); }

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-contact {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-contact:hover { background: var(--brand-red); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 70px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  max-width: 820px;
  margin: 0 auto 0.35em;
}

.hero p.lead {
  max-width: 620px;
  margin: 0 auto 1.8em;
  font-size: 1.08rem;
  color: #4a4a4a;
}

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

.hero-actions .btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.hero-actions .btn-outline:hover { background: rgba(33,33,33,0.06); }

/* ---------- Category tiles (home) ---------- */
.category-tiles {
  padding: 20px 0 70px;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-heading h2 { font-size: 1.9rem; }
.section-heading p { color: #5a5a5a; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tile {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tile-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efe6d6;
}

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

.tile-label {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.98rem;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--brand-red-dark);
  color: #fff;
  padding: 34px 0;
}

.trust-strip .container {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.trust-item { max-width: 220px; font-size: 0.9rem; }
.trust-item strong { display: block; font-family: "Fraunces", serif; font-size: 1.15rem; margin-bottom: 4px; }

/* ---------- Shop page ---------- */
.shop-hero {
  background: var(--cream);
  padding: 46px 0 30px;
  text-align: center;
}

.shop-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.shop-hero p { max-width: 640px; margin: 0 auto; color: #4a4a4a; }

.category-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
}

.category-nav .container {
  display: flex;
  gap: 6px;
  padding: 10px 24px;
}

.category-nav a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  background: var(--cream);
  border: 1px solid var(--border);
}

.category-nav a:hover {
  background: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
}

.category-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 58px;
}

.category-section:last-of-type { border-bottom: none; }

.category-heading { margin-bottom: 26px; }
.category-heading h2 { font-size: 1.6rem; }
.category-heading p { color: #5a5a5a; margin: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f4efe4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.demo-flag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(33, 33, 33, 0.82);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

.card-status {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand-gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.product-vendor {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin: 0;
}

.product-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 2px;
}

.product-desc {
  font-size: 0.85rem;
  color: #5f5f5f;
  margin: 0 0 10px;
  flex: 1;
}

.product-price {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 12px;
}

.product-price span {
  font-weight: 400;
  font-size: 0.7rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Contact page ---------- */
.contact-wrap {
  padding: 60px 0 80px;
}

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

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}

.contact-card h2 { font-size: 1.5rem; }

.contact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brand-red);
}

.note-box {
  border: 1px dashed var(--brand-gold);
  background: #fffdf8;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.88rem;
  color: #5a4a2a;
}

.demo-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 16px 0 6px;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  background: #fff;
}

.demo-form textarea { resize: vertical; min-height: 110px; }

.demo-form .btn { margin-top: 20px; }

.form-disabled-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #8a8a8a;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8d3c8;
  padding: 44px 0 26px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid a { text-decoration: none; color: #d8d3c8; }
.footer-grid a:hover { color: var(--brand-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.78rem;
  color: #918c80;
  text-align: center;
}

.footer-bottom a { color: var(--brand-gold-light); text-decoration: none; }
