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

:root {
  --primary: #1C1917;
  --secondary: #44403C;
  --accent: #CA8A04;
  --accent-soft: #FDE68A;
  --bg: #FAFAF9;
  --bg-warm: #F5F5F4;
  --text: #0C0A09;
  --text-soft: #57534E;
  --border: #E7E5E4;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 200ms ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 300ms ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  max-width: 1280px;
  margin: 2rem auto 4rem;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  color: #FAFAF9;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(202, 138, 4, 0.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(202, 138, 4, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(250, 250, 249, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 200ms ease, background 200ms ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: #EAB308;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #FAFAF9;
  border: 1px solid rgba(250, 250, 249, 0.3);
}

.btn-ghost:hover {
  background: rgba(250, 250, 249, 0.1);
  border-color: rgba(250, 250, 249, 0.6);
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* Products */
.products {
  max-width: 1280px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 400ms ease, box-shadow 400ms ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(28, 25, 23, 0.15);
}

.product-card.featured {
  background: var(--primary);
  color: #FAFAF9;
  border-color: var(--primary);
}

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-warm);
  color: var(--text-soft);
  align-self: flex-start;
}

.badge.gold {
  background: var(--accent);
  color: var(--primary);
}

.product-body h3 {
  font-size: 1.6rem;
}

.product-body p {
  color: var(--text-soft);
  flex: 1;
}

.product-card.featured .product-body p {
  color: rgba(250, 250, 249, 0.7);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 500;
}

.product-card.featured .product-meta {
  border-color: rgba(250, 250, 249, 0.15);
}

.weight {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.product-card.featured .weight {
  color: rgba(250, 250, 249, 0.6);
}

/* Story */
.story {
  max-width: 1280px;
  margin: 8rem auto;
  padding: 0 1.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 200ms ease;
}

.story-image {
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(28, 25, 23, 0.2);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values */
.values {
  background: var(--primary);
  color: #FAFAF9;
  padding: 6rem 1.5rem;
}

.values .section-head h2,
.values .lead {
  color: #FAFAF9;
}

.values .lead {
  color: rgba(250, 250, 249, 0.7);
}

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(250, 250, 249, 0.04);
  border: 1px solid rgba(250, 250, 249, 0.1);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.value h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value p {
  color: rgba(250, 250, 249, 0.7);
  font-size: 0.95rem;
}

/* Gallery */
.gallery {
  max-width: 1280px;
  margin: 8rem auto;
  padding: 0 1.5rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.gallery-item {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item:first-child {
  aspect-ratio: 4/5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #FEF3C7 0%, #FAFAF9 100%);
  padding: 6rem 1.5rem;
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.contact-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-list li {
  font-size: 0.95rem;
  color: var(--text-soft);
  padding-left: 1.5rem;
  position: relative;
}

.contact-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(250, 250, 249, 0.7);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand .brand-mark {
  background: var(--accent);
  color: var(--primary);
}

.footer-brand .brand-name {
  color: #FAFAF9;
}

.footer-tag {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(250, 250, 249, 0.6);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(250, 250, 249, 0.6);
  transition: color 200ms ease;
}

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

.footer-copy {
  font-size: 0.85rem;
  color: rgba(250, 250, 249, 0.4);
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 250, 249, 0.1);
  width: 100%;
  margin-top: 1rem;
}

/* Mobile */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    margin: 1rem;
  }
  .hero-image {
    aspect-ratio: 4/3;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .story-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 540px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .gallery-strip {
    grid-template-columns: 1fr;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}