
:root {
  color-scheme: only light;
  --sand: #f5eadc;
  --linen: #fdf7f0;
  --clay: #d9b59a;
  --rust: #b07a53;
  --walnut: #6b4b36;
  --ink: #2b1c14;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(46, 28, 19, 0.14);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Work Sans", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fcf4ea 0%, #f4e5d5 45%, #fdf7f0 100%);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 90vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 247, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 122, 83, 0.15);
  z-index: 10;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; gap: 4px; }
.brand-logo {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(176, 122, 83, 0.25); background: var(--white);
}
.brand-mark { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.5px; }
.brand-tag { font-size: 0.85rem; color: rgba(43, 28, 20, 0.7); }

.hero { padding: 74px 0 36px; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; align-items: center; }
.banner-logo {
  width: min(440px, 90%); margin-bottom: 14px; border-radius: 14px;
  box-shadow: 0 18px 40px rgba(46, 28, 19, 0.12);
  border: 1px solid rgba(176, 122, 83, 0.18); background: var(--white);
}
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; color: var(--rust); margin-bottom: 12px; font-weight: 600; }
h1, h2, h3 { font-family: var(--font-display); margin: 0 0 14px; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 2.8vw + 1.2rem, 3.6rem); }
h2 { font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: 1.06rem; color: rgba(43, 28, 20, 0.86); }
.hero-image img { border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(176, 122, 83, 0.15); }

.section { padding: 26px 0 82px; }
.soft-background { background: rgba(255, 255, 255, 0.62); }
.section-header { margin-bottom: 22px; }

.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.collection-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card {
  background: var(--white);
  border: 1px solid rgba(176, 122, 83, 0.18);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(46, 28, 19, 0.08);
}
.collection-link { display: block; }
.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(176, 122, 83, 0.18);
}
.collection-card p { margin: 0 0 12px; color: rgba(43, 28, 20, 0.8); }
.collection-cta {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176, 122, 83, 0.3);
  font-weight: 600;
  color: var(--walnut);
  background: rgba(245, 234, 220, 0.7);
}
.collection-card:hover .collection-cta { background: rgba(176, 122, 83, 0.12); }

.site-footer { padding: 40px 0 60px; background: rgba(43, 28, 20, 0.08); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(176, 122, 83, 0.25); }
.footer-link { color: var(--walnut); text-decoration: underline; text-underline-offset: 3px; }
.footer-meta { text-align: center; margin-top: 24px; color: rgba(43, 28, 20, 0.65); font-size: 0.9rem; }

@media (max-width: 900px) {
  .hero-grid, .features, .collection-cards { grid-template-columns: 1fr; }
  .section { padding-bottom: 62px; }
}
