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

:root {
  --matcha-deep: #2D5016;
  --matcha-mid: #4A7C28;
  --matcha-light: #7BAE3E;
  --matcha-pale: #D4E8B8;
  --matcha-cream: #F5F7F0;
  --gold: #B8960C;
  --gold-light: #D4AF37;
  --charcoal: #2C2C2C;
  --warm-gray: #6B6B6B;
  --light-gray: #999;
  --off-white: #FAFAF7;
  --border-light: #E8E8E0;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: white;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--matcha-deep);
  letter-spacing: 2px;
}

.nav-logo span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--matcha-deep);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, rgba(26,58,10,0.88) 0%, rgba(45,80,22,0.8) 50%, rgba(74,124,40,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 30px;
}

.hero-ornament {
  width: 60px;
  height: 1px;
  background: var(--gold-light);
  margin: 0 auto 30px;
  position: relative;
}

.hero-ornament::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 15px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 450px;
  margin: 0 auto 40px;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid white;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: white;
  color: var(--matcha-deep);
}

.btn-primary {
  background: var(--matcha-deep);
  border-color: var(--matcha-deep);
  color: white;
}

.btn-primary:hover {
  background: var(--matcha-mid);
  border-color: var(--matcha-mid);
}

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

.btn-gold:hover {
  background: var(--gold);
  color: white;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--matcha-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--warm-gray);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.center {
  margin: 0 auto;
}

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

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 25px 0;
}

.divider.center {
  margin: 25px auto;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 18px;
  color: var(--matcha-mid);
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--matcha-light);
  line-height: 1;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  font-weight: 300;
  margin-bottom: 20px;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding: 15px 20px;
  background: var(--matcha-cream);
  border-radius: 4px;
}

.award-badge img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.award-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}

.award-badge-text span {
  display: block;
  font-size: 11px;
  color: var(--warm-gray);
  font-weight: 400;
}

/* ===== PRODUCT CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.category-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.category-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: white;
  width: 100%;
}

.category-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.category-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ===== PRODUCT TABLES ===== */
.product-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.product-section:last-child {
  border-bottom: none;
}

.grade-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.grade-table th {
  background: var(--matcha-deep);
  color: white;
  padding: 12px 15px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.grade-table th:first-child {
  text-align: left;
}

.grade-table td {
  padding: 10px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.grade-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--matcha-deep);
}

.grade-table tbody tr:nth-child(even) {
  background: var(--matcha-cream);
}

.grade-table tbody tr:hover {
  background: var(--matcha-pale);
}

.stars { color: var(--gold); }
.dash { color: #ccc; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.price-table th {
  background: var(--matcha-cream);
  padding: 12px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--matcha-deep);
  border-bottom: 2px solid var(--matcha-pale);
}

.price-table th:first-child { text-align: left; }

.price-table td {
  padding: 10px 15px;
  text-align: center;
  border-bottom: 1px solid #f0f0e8;
  font-size: 14px;
}

.price-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--matcha-deep);
}

.price-table tbody tr:hover {
  background: #fafaf5;
}

.price-note {
  font-size: 13px;
  color: var(--warm-gray);
  font-style: italic;
  margin-top: 10px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 25px 0;
  padding: 25px;
  background: var(--matcha-cream);
  border-radius: 4px;
}

.info-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--matcha-deep);
  margin-bottom: 4px;
}

.info-item span {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ===== PACKAGING ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pkg-card {
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pkg-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.pkg-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
}

.pkg-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pkg-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* Process strip */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.process-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.process-caption {
  font-size: 12px;
  color: var(--warm-gray);
  text-align: center;
  margin-top: 8px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-card {
  padding: 40px;
  background: var(--matcha-cream);
  border-radius: 4px;
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--matcha-deep);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-detail-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-detail-text p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
  background: white;
}

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

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 350px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 12px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--matcha-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: white;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 15px;
  }
  .hero h1 { font-size: 42px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-row { grid-template-columns: 1fr; gap: 30px; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; letter-spacing: 3px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .page-hero { height: 250px; }
  .page-hero h1 { font-size: 32px; }
}
