:root {
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --charcoal: #1C1917;
  --charcoal-light: #44403C;
  --gold: #B8924A;
  --gold-light: #D4AF73;
  --text: #1C1917;
  --text-muted: #78716C;
  --white: #FFFFFF;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(28,25,23,0.08);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 3rem 5rem;
  background: var(--cream);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  max-width: 420px;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-image-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28,25,23,0.14), 0 4px 16px rgba(28,25,23,0.06);
}
.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* PROBLEM */
.problem {
  background: var(--charcoal);
  color: var(--cream);
  padding: 6rem 3rem;
}
.problem-inner {
  max-width: 860px;
  margin: 0 auto;
}
.problem-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.label-text {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.problem-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.problem-context {
  font-size: 0.95rem;
  color: rgba(250,248,245,0.65);
  line-height: 1.7;
  padding-left: 2rem;
}

/* SOLUTIONS */
.solutions {
  padding: 6rem 3rem;
  background: var(--cream);
}
.solutions-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 3rem;
  letter-spacing: -0.015em;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.solution-card {
  padding: 2rem;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 3px;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}
.solution-card:hover {
  box-shadow: 0 8px 32px rgba(28,25,23,0.08);
}
.solution-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.solution-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.solution-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRODUCTS */
.products {
  padding: 6rem 3rem;
  background: var(--cream-dark);
}
.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,25,23,0.06);
}
.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f0ea;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.04);
}
.product-info {
  padding: 1.5rem;
}
.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.product-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.product-original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* COMMUNITY */
.community {
  background: var(--cream);
  padding: 6rem 3rem;
  text-align: center;
}
.community-inner {
  max-width: 640px;
  margin: 0 auto;
}
.community-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.community-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.community-context {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--charcoal);
  color: var(--cream);
  padding: 6rem 3rem;
  text-align: center;
}
.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
}
.philosophy-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.philosophy-heading em {
  color: var(--gold);
  font-style: italic;
}
.philosophy-text {
  font-size: 1rem;
  color: rgba(250,248,245,0.72);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* FOOTER */
.footer {
  background: var(--cream-dark);
  padding: 4rem 3rem;
  border-top: 1px solid rgba(28,25,23,0.08);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.footer-hebrew {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 400;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--charcoal-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
}
.footer-links a:hover { color: var(--charcoal); }
.footer-sep { color: rgba(28,25,23,0.25); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(28,25,23,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-image-frame { max-width: 320px; margin: 0 auto; }
  .hero-headline { font-size: 2.2rem; }
  .solutions-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .problem, .solutions, .products, .community, .philosophy { padding: 4rem 1.5rem; }
  .problem-quote { font-size: 1.3rem; padding-left: 1.25rem; }
  .problem-context { padding-left: 1.25rem; }
}

@media (max-width: 480px) {
  .footer-links { flex-wrap: wrap; gap: 0.25rem; }
  .footer-sep { display: none; }
}