@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --cream: #f7f3ec;
  --sage: #4d6e42;
  --sage-dark: #3a5432;
  --sage-light: #e8f0e4;
  --earth: #2c1f14;
  --text: #4a3728;
  --gold: #b8883a;
  --sand: #e8dcc8;
  --stone: #8a7464;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(44,31,20,0.08);
  --shadow-md: 0 4px 30px rgba(44,31,20,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--sage-dark); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--earth);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; font-family: 'Nunito', sans-serif; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 2px solid currentColor;
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--white); color: var(--sage); }

.btn-text {
  font-weight: 600;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.btn-text:hover { gap: 0.6rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled { border-color: var(--sand); box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--earth);
  font-weight: 700;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--sage); }
.site-nav a.active { color: var(--sage); font-weight: 600; }

.btn-nav {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--sage-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content .lead { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background: var(--earth);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content .lead { color: rgba(255,255,255,0.8); }

.tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.tag-gold {
  background: rgba(184,136,58,0.12);
  color: var(--gold);
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--earth); color: var(--sand); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead, .section-dark p { color: rgba(232,220,200,0.85); }
.section-sage { background: var(--sage); color: var(--white); }
.section-sage h2, .section-sage h3 { color: var(--white); }
.section-sage p, .section-sage .lead { color: rgba(255,255,255,0.88); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 1.75rem; }

/* ── Philosophy strip ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.philosophy-item {
  background: var(--sage);
  color: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}
.philosophy-item:nth-child(2) { background: var(--sage-dark); }
.philosophy-item h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.philosophy-item p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin: 0; }
.philosophy-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ── About split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; }
.split-img img { width: 100%; height: 480px; object-fit: cover; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ── Steps grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.step-card:hover { transform: translateY(-3px); color: inherit; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 { font-size: 1rem; color: var(--earth); margin-bottom: 0.25rem; }
.step-card p { font-size: 0.9rem; color: var(--stone); margin: 0; }

/* ── Article cards ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--sand);
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.article-card-body p { font-size: 0.92rem; color: var(--stone); flex: 1; }
.article-card-footer { padding: 0 1.5rem 1.5rem; }

/* ── Article list (articles index) ── */
.articles-list { display: flex; flex-direction: column; gap: 2rem; }
.article-row {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: transform 0.2s;
}
.article-row:hover { transform: translateY(-3px); }
.article-row-img { overflow: hidden; background: var(--sand); }
.article-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-row:hover .article-row-img img { transform: scale(1.04); }
.article-row-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.article-row-body h3 { margin-bottom: 0.5rem; }
.article-row-body p { color: var(--stone); font-size: 0.95rem; }

/* ── Article page ── */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.6rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; color: var(--stone); font-size: 0.9rem; }

.related-articles { background: var(--sand); padding: 4rem 0; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sage);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--earth);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-name { font-weight: 700; color: var(--sage-dark); font-size: 0.9rem; }

.pull-quote {
  border-left: 5px solid var(--gold);
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2.5rem 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--earth);
  margin-bottom: 0.75rem;
}
.pull-quote cite { color: var(--stone); font-size: 0.9rem; font-style: normal; }

/* ── Shop ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--sage); font-weight: 700; margin: 0.5rem 0 1rem; }
.product-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.product-card p { font-size: 0.88rem; color: var(--stone); flex: 1; }
.product-card .btn-primary { margin-top: 1rem; font-size: 0.88rem; padding: 0.6rem 1.25rem; text-align: center; }

.product-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sand);
}
.product-section-title h2 { margin: 0; font-size: 1.8rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--earth); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  color: var(--earth);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── CTA strip ── */
.cta-strip {
  background: var(--sage);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

/* ── Footer ── */
.site-footer { background: var(--earth); color: var(--sand); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.4rem; display: block; margin-bottom: 0.75rem; }
.footer-brand p { color: rgba(232,220,200,0.7); font-size: 0.9rem; line-height: 1.7; }
.footer-nav h4 { color: rgba(232,220,200,0.5); font-size: 0.7rem; }
.footer-nav a { display: block; color: rgba(232,220,200,0.8); font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.15s; }
.footer-nav a:hover { color: var(--white); }
.footer-contact h4 { color: rgba(232,220,200,0.5); font-size: 0.7rem; }
.footer-contact p, .footer-contact a { font-size: 0.9rem; color: rgba(232,220,200,0.8); display: block; margin-bottom: 0.5rem; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(232,220,200,0.12);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(232,220,200,0.4); font-size: 0.82rem; margin: 0; }

/* ── Services list ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--sage);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--stone); margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-header { position: relative; }
  .site-nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--sand); font-size: 1rem; }
  .site-nav a:last-child { border: none; margin-top: 0.5rem; text-align: center; }
  .btn-nav { border-radius: 50px; padding: 0.7rem 1.5rem; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 2px; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-reverse { direction: ltr; }
  .split-img img { height: 300px; }
  .steps-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; }
  .article-row-img { height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: 75vh; }
  h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { text-align: center; }
}
