:root {
  --cream: #f7f2e8;
  --sand: #efe5d7;
  --sage: #8a9b7b;
  --sage-deep: #6c7e60;
  --wood: #8c674a;
  --wood-deep: #6a4d39;
  --charcoal: #34302c;
  --muted: #6f695f;
  --white: #ffffff;
  --line: rgba(52, 48, 44, 0.12);
  --shadow: 0 18px 40px rgba(52, 48, 44, 0.12);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, #faf6f0 0%, #f3ebdf 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 242, 232, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand img {
  height: 54px;
  width: auto;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.95rem;
}
.nav a {
  color: var(--muted);
}
.nav a:hover { color: var(--charcoal); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background:
    linear-gradient(120deg, rgba(247, 242, 232, 0.95), rgba(239, 229, 215, 0.88)),
    url('assets/banner.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(138, 155, 123, 0.18), transparent 35%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow,
.section-label,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--sage-deep);
  font-weight: 700;
}
.hero h1,
.section h2,
.hero-card h2,
.cta-box h2 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
  margin: 0 0 16px;
}
.hero h1 { font-size: clamp(2.5rem, 4.8vw, 4.6rem); max-width: 11ch; }
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 55ch;
}
.hero-actions,
.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--wood-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #5c4232; }
.btn-secondary {
  border: 1px solid rgba(106, 77, 57, 0.22);
  background: rgba(255,255,255,0.65);
  color: var(--charcoal);
}
.hero-card,
.about-panel,
.card,
.cta-box {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-card {
  overflow: hidden;
}
.hero-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.hero-card-body {
  padding: 22px;
}
.hero-card h2 { font-size: 1.65rem; }
.hero-card p { margin: 0; color: var(--muted); }
.section { padding: 78px 0; }
.two-col,
.feature-grid,
.footer-wrap,
.cta-box {
  display: grid;
  gap: 30px;
}
.two-col { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.about-panel { padding: 30px; }
.about-panel ul {
  margin: 0;
  padding-left: 20px;
}
.about-panel li + li { margin-top: 14px; }
.featured { background: rgba(255,255,255,0.35); }
.feature-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.feature-copy p { color: var(--muted); }
.pill {
  padding: 10px 14px;
  background: rgba(138, 155, 123, 0.12);
  border-radius: 999px;
  font-size: 0.92rem;
}
.feature-visuals {
  position: relative;
  min-height: 560px;
}
.visual-main,
.visual-secondary {
  position: absolute;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,0.7);
}
.visual-main {
  width: 72%;
  left: 0;
  top: 0;
}
.visual-secondary {
  width: 55%;
  right: 0;
  bottom: 0;
}
.collections .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.card {
  padding: 24px;
}
.card h3 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
}
.card p { color: var(--muted); margin-bottom: 0; }
.shop-cta { padding-top: 10px; }
.cta-box {
  grid-template-columns: 1.3fr auto;
  align-items: center;
  padding: 32px;
}
.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: start;
}
.footer-wrap p { max-width: 56ch; color: var(--muted); margin-bottom: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--charcoal); }

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .feature-grid,
  .cta-box,
  .footer-wrap,
  .collections .cards {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
  .feature-visuals {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .visual-main,
  .visual-secondary {
    position: static;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    gap: 14px;
  }
  .hero {
    padding-top: 42px;
  }
  .section {
    padding: 58px 0;
  }
  .brand img {
    height: 46px;
  }
}

.hero-inner {
  padding: 54px 0 44px;
}
.hero-grid-single {
  grid-template-columns: 1fr;
}
.feature-visuals-static {
  min-height: auto;
}
.static-img {
  position: static;
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,0.7);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}
