/* =====================
   FONTS & VARIABLES
   ===================== */
:root {
  --bg: #fdf8f3;
  --surface: #ffffff;
  --brown-deep: #3d2b1f;
  --brown: #5c3d2e;
  --brown-light: #8b6914;
  --amber: #c8860a;
  --amber-light: #b45309;
  --tan: #d4a574;
  --tan-light: #e8c9a0;
  --cream: #f5ede0;
  --sage: #6b7c5e;
  --text: #2c1810;
  --text-muted: #7a5c45;
  --border: #e8d5c0;
  --shadow: 0 6px 32px rgba(61, 43, 31, 0.12);
  --shadow-sm: 0 2px 12px rgba(61, 43, 31, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =====================
   NAV
   ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.2;
}
.logo-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--cream); color: var(--brown-deep); }
.nav-cta {
  background: var(--brown) !important;
  color: var(--surface) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--brown-deep) !important; }

/* =====================
   HERO
   ===================== */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 32px 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 100px;
  padding: 5px 12px 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 24px;
}
.badge-icon { font-size: 0.9rem; }
.hero-headline {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.15;
  margin-bottom: 20px;
}
.headline-accent { color: var(--amber); font-style: italic; }
.hero-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-deep);
  color: var(--surface);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--brown-deep);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--tan); background: var(--cream); }

/* Hero image */
.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =====================
   SECTION SHARED
   ===================== */
.section {
  padding: 80px 0;
}
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* =====================
   ABOUT
   ===================== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.about-feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.about-feat-icon {
  width: 40px;
  height: 40px;
  background: #fef3c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.about-feat h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.about-feat p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   PRODUCTS
   ===================== */
.products { background: var(--surface); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.product-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-img-wrap { overflow: hidden; }
.product-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-body { padding: 20px 24px 24px; }
.product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.product-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   WORKSHOP
   ===================== */
.workshop { background: var(--brown-deep); color: var(--cream); }
.workshop .section-label { color: var(--tan); }
.workshop .section-label::before { background: var(--tan); }
.workshop .section-headline { color: var(--cream); }
.workshop .section-sub { color: rgba(245, 237, 224, 0.7); }
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.workshop-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.workshop-img-wrap img { width: 100%; height: 340px; object-fit: cover; }
.workshop-text p {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}
.workshop-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workshop-text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--tan-light);
  font-weight: 500;
}
.workshop-text li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.2);
  color: var(--tan);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================
   CONTACT
   ===================== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: #fef3c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-deep);
}
.contact-item-value a:hover { color: var(--amber); }
.contact-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* Contact form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.contact-form-wrap > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--tan); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--brown-deep);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tag { font-size: 0.78rem; color: rgba(245,237,224,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-divider { height: 1px; background: rgba(245,237,224,0.1); margin: 20px 0; }
.footer-copy { font-size: 0.8rem; color: rgba(245,237,224,0.4); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .workshop-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 56px; }
  .section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}