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

/* ── Variables ── */
:root {
  --jade:     #2d4a3e;
  --jade-light: #3a6355;
  --gold:     #c9a96e;
  --gold-light: #d4bc8e;
  --dark:     #1a1a1a;
  --text:     #333;
  --text-light: #666;
  --bg:       #ffffff;
  --bg-light: #f8f7f5;
  --border:   #e5e2dd;
  --serif:    'Libre Baskerville', Georgia, serif;
  --sans:     'Inter', -apple-system, sans-serif;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jade);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--jade); }

.nav-cta {
  background: var(--jade);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--jade-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--jade);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Replace with: background: url('images/hero.jpg') center/cover; opacity: 0.3; */
  background: linear-gradient(135deg, #2d4a3e 0%, #1a3029 60%, #0f1f1a 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-tag {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn--white {
  background: #fff;
  color: var(--jade);
  border-color: #fff;
}

.btn--white:hover {
  background: var(--bg-light);
}

.btn--full { width: 100%; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.trust-item { text-align: center; }

.trust-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jade);
}

.trust-label {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Sections ── */
.section { padding: 100px 0; }
.section--light { background: var(--bg-light); }

.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Story ── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 16px;
}

.story-img { border-radius: 6px; }
.story-img--main { height: 420px; }
.story-img--small { height: 420px; }

.story-text h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--jade);
  transition: color 0.2s;
}

.link-arrow:hover { color: var(--jade-light); }

/* ── Products ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.product-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--jade);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 3px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Sourcing ── */
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.sourcing-step { position: relative; }

.sourcing-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bg-light);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--border);
}

.sourcing-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.sourcing-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--jade);
  padding: 80px 0;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-text p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: var(--jade);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--jade);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: #999;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #333;
}

.footer-brand .logo {
  display: block;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #777;
}

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ccc;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
}

/* ── Placeholder ── */
.placeholder-img {
  background: linear-gradient(135deg, #e8e2da 0%, #d5cec4 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-img::after {
  content: 'Photo';
  font-size: 0.82rem;
  color: #b0a898;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .sourcing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding: 100px 0 60px; }

  .trust-bar-inner { flex-wrap: wrap; gap: 24px; }
  .trust-divider { display: none; }

  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-images { order: -1; }
  .story-img--main { height: 280px; }
  .story-img--small { height: 280px; }

  .section { padding: 72px 0; }
  .section-header h2, .story-text h2, .contact-text h2 { font-size: 1.8rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .sourcing-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 1.8rem; }
}
