/* ===== MATCHIO - Organic Farm Style ===== */

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

/* ===== CSS Variables ===== */
:root {
  --green-deep: #2d5a27;
  --green-mid: #4a7c3f;
  --green-light: #7aad6a;
  --green-pale: #c8dfc2;
  --cream: #f5f0e8;
  --warm-white: #faf8f3;
  --brown: #6b4c2a;
  --brown-light: #c4a882;
  --text-dark: #2a2a2a;
  --text-mid: #5a5a5a;
  --text-light: #8a8a8a;
  --border: #e0d8cc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.handwritten {
  font-family: 'Caveat', cursive;
  color: var(--green-mid);
}

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

.section-label {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--green-mid);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--green-deep);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--green-deep);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--green-deep);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: var(--green-deep);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--green-deep);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--green-deep);
  color: #fff;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(250, 248, 243, 0.97);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.5px;
}

.nav-logo span {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--brown-light);
  display: block;
  line-height: 1;
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-mid);
  transition: width 0.3s ease;
}

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

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

.nav-links a.active {
  color: var(--green-deep);
}

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

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(122, 173, 106, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(45, 90, 39, 0.08) 0%, transparent 50%);
}

/* Decorative tea field rows */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 18px,
    rgba(74, 124, 63, 0.06) 18px,
    rgba(74, 124, 63, 0.06) 20px
  );
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
}

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

.hero-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--green-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--green-mid);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--green-deep);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 440px;
  font-weight: 300;
  line-height: 1.8;
}

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

.hero-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-badge-item {
  text-align: center;
}

.hero-badge-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.hero-badge-item .label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

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

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

/* SVG Tea bowl illustration */
.hero-illustration svg {
  width: 100%;
  height: 100%;
}

/* Hero photo (real photo variant) */
.hero-photo-wrap {
  max-width: 580px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.6s ease;
}
.hero-photo-wrap:hover .hero-photo-img {
  transform: scale(1.03);
}

/* ===== Marquee Banner ===== */
.marquee-section {
  background-color: var(--green-deep);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-pale);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--green-light);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Story Section ===== */
.story-section {
  padding: 100px 0;
  background-color: var(--warm-white);
}

.story-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-main {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-light) 100%);
}

.story-img-real {
  display: block;
  padding: 0;
  background: none;
  overflow: hidden;
  border: 1px solid var(--border);
}

.story-img-real .story-img-main {
  display: block;
  transition: transform 0.6s ease;
}

.story-img-real:hover .story-img-main {
  transform: scale(1.03);
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #c8dfc2 0%, #9fc48d 50%, #7aad6a 100%);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.story-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.05) 20px,
    rgba(255,255,255,0.05) 40px
  );
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: var(--brown);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(107,76,42,0.3);
}

.story-badge .year {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.story-badge .since {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.story-content {
  padding: 20px 0;
}

.story-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 24px;
}

.story-content p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.story-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-value-icon {
  width: 36px;
  height: 36px;
  background-color: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.story-value-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.story-value-text p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-light);
}

/* ===== Products Section ===== */
.products-section {
  padding: 100px 0;
  background-color: var(--cream);
}

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

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background-color: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45, 90, 39, 0.12);
}

.product-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-inner {
  width: 70%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-bleed image mode: overrides default 70% width */
.product-img-inner[style*="overflow:hidden"] {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  position: absolute;
  top: 0; left: 0;
}

.product-card:hover .product-img-inner[style*="overflow:hidden"] img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background-color: var(--green-deep);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
}

.product-grade {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  color: var(--brown-light);
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-deep);
  transition: gap 0.3s;
}

.product-link:hover {
  gap: 14px;
}

.product-link-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}

.product-card:hover .product-link-arrow {
  transform: translateX(4px);
}

.products-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Process Section ===== */
.process-section {
  padding: 100px 0;
  background-color: var(--warm-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--green-pale), var(--green-light), var(--green-pale));
}

.process-step {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 56px;
  height: 56px;
  background-color: var(--cream);
  border: 2px solid var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  background-color: var(--warm-white);
  transition: all 0.3s;
}

.process-step:hover .step-icon {
  background-color: var(--green-deep);
  border-color: var(--green-deep);
}

.step-num {
  font-family: 'Caveat', cursive;
  font-size: 0.85rem;
  color: var(--green-light);
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== Testimonial / Quote ===== */
.quote-section {
  padding: 80px 0;
  background-color: var(--green-deep);
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--green-pale);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.quote-section cite {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--brown-light);
  font-style: normal;
}

/* ===== Footer ===== */
footer {
  background-color: #1e3d18;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--green-pale);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.8rem;
}

.footer-bottom a {
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--green-pale);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background-color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(74, 124, 63, 0.04) 80px,
    rgba(74, 124, 63, 0.04) 82px
  );
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--green-deep);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===== Products Full Page ===== */
.products-full {
  padding: 80px 0 100px;
}

.products-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

.products-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Product Detail Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background-color: var(--warm-white);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 40px 32px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background-color: var(--green-pale);
}

.modal .product-grade {
  font-size: 1rem;
}

.modal h2 {
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-specs {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.modal-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.modal-spec-row .spec-label {
  font-weight: 700;
  color: var(--text-dark);
}

.modal-spec-row .spec-value {
  color: var(--text-mid);
}

/* ===== About Page ===== */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.about-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.about-img-photo {
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img-portrait {
  aspect-ratio: 3 / 4;
}

.about-farm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-photo:hover .about-farm-img {
  transform: scale(1.04);
}

.about-content h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--green-deep);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-section {
  background-color: var(--cream);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), var(--green-light));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: 'Caveat', cursive;
  color: var(--green-mid);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

/* ===== Contact Page ===== */
.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item-text p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form {
  background-color: var(--cream);
  padding: 48px;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  background-color: var(--warm-white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
}

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

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

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container,
  .story-section .container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

  .products-grid,
  .products-grid-full,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before { display: none; }

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

  .modal {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .modal-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--warm-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .products-grid,
  .products-grid-full,
  .team-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    gap: 12px;
  }

  .contact-form {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== Products Page — Matcha Showcase Banner ===== */
.products-matcha-banner {
  width: 100%;
  margin-bottom: 52px;
  overflow: hidden;
  position: relative;
  max-height: 480px;
  border: 1px solid var(--border);
}
.products-matcha-banner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  transition: transform 0.6s ease;
}
.products-matcha-banner:hover img {
  transform: scale(1.02);
}
.products-matcha-banner-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 32px;
  background: linear-gradient(transparent, rgba(0,0,0,0.42));
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.8px;
  font-family: 'Lato', sans-serif;
}
@media (max-width: 768px) {
  .products-matcha-banner { max-height: 240px; }
  .products-matcha-banner img { height: 240px; }
  .products-matcha-banner-caption { padding: 14px 20px; font-size: 0.78rem; }
}
