:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7DC;
  --fg: #1C1C1C;
  --fg-muted: #5A5248;
  --accent: #1C3830;
  --accent-warm: #B84A1E;
  --accent-sand: #D4B896;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--accent-sand);
}
.nav__inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,56,48,0.85) 0%, rgba(28,56,48,0.4) 60%, rgba(28,56,48,0.1) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sand);
  margin-bottom: 16px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: #F5F0E8;
  margin-bottom: 20px;
  max-width: 540px;
}
.hero__sub {
  font-size: 17px;
  color: #C8BFB0;
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero__cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent-warm);
  color: #F5F0E8;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.hero__cta:hover { background: #9a3d14; }

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 80px 40px;
}
.manifesto__inner {
  max-width: 700px;
  margin: 0 auto;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: #F5F0E8;
  line-height: 1.4;
  margin-bottom: 28px;
  border-left: 3px solid var(--accent-warm);
  padding-left: 28px;
}
.manifesto__body {
  font-size: 16px;
  color: #C8BFB0;
  line-height: 1.75;
}

/* PRODUCTS */
.products {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.products__header {
  margin-bottom: 56px;
}
.products__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.products__sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-card__swatch {
  height: 180px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.swatch--eye {
  background: repeating-conic-gradient(#1C3830 0% 25%, #F5F0E8 0% 50%) 50% / 40px 40px;
}
.swatch--checker {
  background: repeating-conic-gradient(#B84A1E 0% 25%, #F5F0E8 0% 50%) 50% / 36px 36px;
}
.swatch--sun {
  background: radial-gradient(circle at 50% 50%, #B84A1E 40%, #1C3830 42%, #1C3830 60%, #F5F0E8 62%);
}
.product-card__text { padding: 0; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.product-card__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-warm);
  letter-spacing: 0.04em;
}

/* CRAFT */
.craft {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.craft__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.craft__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 20px;
}
.craft__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.craft__visual {}
.craft__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* LIFESTYLE */
.lifestyle {
  padding: 100px 40px;
  background: var(--bg);
}
.lifestyle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.lifestyle__inner--reverse { direction: rtl; }
.lifestyle__inner--reverse > * { direction: ltr; }
.lifestyle__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.lifestyle__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.lifestyle__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 20px;
}
.lifestyle__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.lifestyle__cta {
  display: inline-block;
  padding: 13px 26px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lifestyle__cta:hover { background: var(--accent); color: #F5F0E8; }

/* CAPTURE */
.capture {
  background: var(--accent);
  padding: 100px 40px;
  text-align: center;
}
.capture__inner { max-width: 580px; margin: 0 auto; }
.capture__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-sand);
  margin-bottom: 16px;
}
.capture__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: #F5F0E8;
  line-height: 1.2;
  margin-bottom: 20px;
}
.capture__body {
  font-size: 16px;
  color: #C8BFB0;
  line-height: 1.75;
  margin-bottom: 36px;
}
.capture__cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-warm);
  color: #F5F0E8;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.capture__cta:hover { background: #9a3d14; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--accent-sand);
  padding: 32px 40px;
}
.footer__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: baseline; gap: 20px; }
.footer__name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--accent); }
.footer__sub { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { min-height: 480px; }
  .hero__content { padding: 60px 24px; }
  .products__grid { grid-template-columns: 1fr; }
  .craft__inner { grid-template-columns: 1fr; }
  .lifestyle__inner { grid-template-columns: 1fr; }
  .lifestyle__img { height: 260px; }
  .craft__img { height: 260px; }
  .manifesto, .craft, .products, .lifestyle, .capture, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding-left: 24px; padding-right: 24px; }
}