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

:root {
  --cream: #f8f6f1;
  --cream-dark: #ebe8e0;
  --green-light: #d4e5d9;
  --green: #7fa87a;
  --green-deep: #4a7c59;
  --green-dark: #2d5a3a;
  --accent: #6b9b5e;
  --accent-soft: rgba(127, 168, 122, 0.25);
  --text: #2c3329;
  --muted: #5c6b58;
  --border-subtle: rgba(45, 90, 58, 0.12);
  --surface: rgba(255, 255, 255, 0.85);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 22px 40px rgba(45, 90, 58, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-dark) 35%, var(--green-light) 70%, rgba(127, 168, 122, 0.2) 100%);
  background-attachment: fixed;
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

h1, h2, h3, .page-title, .eyebrow, .footer-brand {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(26px);
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* Tighter vertical padding so the logo can be larger without growing the header bar */
  padding: 10px 0;
  gap: 24px;
  overflow: visible;
}

.logo {
  /* Stack PNG (with wordmark) + HTML tagline */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  flex-shrink: 0;
  line-height: 1.25;
  text-decoration: none;
  color: inherit;
  max-width: min(340px, 100%);
  overflow: visible;
}

.logo-tagline {
  display: block;
  margin: -10px 0 0;
  width: auto;
  max-width: min(340px, 54vw);
  flex: 0 0 auto;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: max(12px, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--green-dark);
  line-height: 1.2;
  white-space: normal;
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

@media (max-width: 520px) {
  .logo-tagline {
    font-size: max(12px, 0.72rem);
    letter-spacing: 0.04em;
    max-width: min(260px, 72vw);
  }
}

.logo-img {
  display: block;
  /* Larger mark within the same header height (offset by reduced .header-inner padding) */
  height: clamp(56px, 6.2vw, 80px);
  width: auto;
  max-width: min(340px, 54vw);
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  /* Crisp separation from the cream header + slight depth */
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65))
    drop-shadow(0 2px 6px rgba(28, 38, 32, 0.14));
  transition: filter 0.18s ease-out, transform 0.18s ease-out;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.75))
    drop-shadow(0 3px 10px rgba(28, 38, 32, 0.18));
  transform: translateY(-0.5px);
}

@media (max-width: 520px) {
  /* Keep bar height in line with the previous 16px padding + ~44px logo */
  .header-inner {
    padding: 10px 0;
  }
  .logo-img {
    height: clamp(44px, 11vw, 52px);
    max-width: min(260px, 58vw);
  }
}

/* Nav + language switcher (right side of header) */
.header-nav-cluster {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  align-self: center;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease-out, border-color 0.15s ease-out,
    box-shadow 0.15s ease-out;
}

.lang-switcher-btn:hover {
  background: #fff;
  border-color: rgba(45, 90, 58, 0.22);
  box-shadow: 0 4px 12px rgba(45, 90, 58, 0.08);
}

.lang-switcher-chevron {
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.75;
}

.lang-switcher-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px;
  list-style: none;
  min-width: 132px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  z-index: 40;
}

.lang-switcher-menu button {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: none;
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
}

.lang-switcher-menu button:hover {
  background: rgba(212, 229, 217, 0.45);
  color: var(--green-dark);
}

@media (max-width: 900px) {
  .header-nav-cluster {
    gap: 12px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .header-inner .nav {
    gap: 14px;
    font-size: 0.85rem;
  }
}

.nav a {
  position: relative;
  padding: 4px 0;
  color: var(--muted);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  border-radius: 999px;
  transition: width 0.22s ease-out;
}

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

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

/* Full-width hero image at top — replace .hero-banner-placeholder with <img> or use background-image */
.hero-banner {
  width: 100%;
  min-height: 70vh;
  max-height: 720px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-light) 0%, rgba(127, 168, 122, 0.4) 100%);
}

.hero-banner-inner {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  max-height: 720px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.32) 60%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(
      120deg,
      rgba(248, 246, 241, 0.4),
      rgba(212, 229, 217, 0.15),
      rgba(127, 168, 122, 0.1)
    );
  pointer-events: none;
}

.hero-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-banner-text {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #f9f9f9;
}

.hero-banner-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-banner-text h1 span {
  display: block;
  white-space: nowrap;
}

.hero-banner-text .lead {
  color: #f3f3f3;
}

@media (max-width: 520px) {
  .hero-banner-text h1 span {
    white-space: normal;
  }
}

.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 12px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.lead {
  margin: 0 0 24px;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, border-color 0.15s ease-out,
    color 0.15s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(74, 124, 89, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(74, 124, 89, 0.35);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(45, 90, 58, 0.4);
  color: var(--green-deep);
}

.btn.ghost:hover {
  background: var(--accent-soft);
  border-color: var(--green);
}

/* Hero: secondary button same style as primary */
.hero-banner-text .btn.ghost {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--green-dark);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(74, 124, 89, 0.3);
}

.hero-banner-text .btn.ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(74, 124, 89, 0.35);
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-color: transparent;
  color: var(--green-dark);
}

.sub-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--cream-dark));
  border-radius: var(--radius-xl);
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--green-deep);
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.hero-card-title {
  margin: 0 0 6px;
  font-weight: 600;
}

.hero-card-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-image-placeholder {
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
  border: 1px dashed rgba(45, 90, 58, 0.35);
  background: linear-gradient(135deg, var(--green-light), rgba(255, 255, 255, 0.6));
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-image-placeholder span:first-child {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green-deep);
}

.hero-image-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 40px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(212, 229, 217, 0.5) 0%, rgba(248, 246, 241, 0.9) 100%);
}

.section-header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.section h2 {
  font-size: 1.6rem;
  margin-top: 0;
}

.section p {
  color: var(--muted);
}

/* About page */
.page-main {
  padding-top: 0;
}
.page-hero {
  padding-top: 48px;
  padding-bottom: 32px;
}
/* Page hero with video background (About & Dry Fruits) */
.page-hero--video {
  position: relative;
  padding: 0;
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-video-wrap {
  position: absolute;
  inset: 0;
}
.page-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    linear-gradient(
      90deg,
      rgba(248, 246, 241, 0.35),
      rgba(212, 229, 217, 0.2)
    );
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 20px;
}
.page-hero--video .page-title {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.page-hero--dry-fruits .page-title {
  text-transform: uppercase;
}
.page-hero--about .page-title {
  text-transform: uppercase;
}
.page-hero--mission .page-title {
  text-transform: uppercase;
}
.page-hero--partners .page-title {
  text-transform: uppercase;
}
.page-hero--contact .page-title {
  text-transform: uppercase;
}

/* Contact page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact-page-left {
  text-align: left;
}
.contact-page-intro {
  margin: 0 0 28px;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-page-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-subtle);
  aspect-ratio: 4/3;
  min-height: 280px;
}
.contact-page-map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-page-map-fallback {
  margin: 12px 0 0;
  font-size: 0.9rem;
}
.contact-page-map-fallback a {
  color: var(--green-deep);
}
.contact-page-map-fallback a:hover {
  text-decoration: underline;
}
.contact-page-block {
  margin-bottom: 28px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  text-align: left;
}
.contact-page-block p {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: var(--text);
}
.contact-page-block p:last-child {
  margin-bottom: 0;
}
.contact-page-name {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px !important;
}
.contact-page-email a {
  color: var(--green-deep);
}
.contact-page-email a:hover {
  text-decoration: underline;
}
.contact-page-cta {
  margin: 0;
}

.contact-page-response-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Contact page: Why Contact Us segment */
.trust-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.trust-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.trust-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trust-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 32, 0.82);
  pointer-events: none;
  z-index: 1;
}

.trust-section-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.trust-section-title {
  margin: 0 0 26px;
  text-align: center;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-points {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

.trust-point {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.trust-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 229, 217, 0.28), rgba(127, 168, 122, 0.18));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-point-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .trust-points {
    flex-direction: column;
    gap: 24px;
  }
  .trust-point {
    align-items: center;
  }
}

.page-hero--simple {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, rgba(212, 229, 217, 0.4) 0%, var(--cream) 100%);
}
.page-hero--simple .page-title {
  color: var(--text);
  margin: 0;
}
.page-title {
  margin: 0;
  font-size: 2rem;
  text-align: center;
}
.page-cta {
  margin: 0;
  text-align: center;
}
.nav a.nav-current {
  color: var(--green-dark);
  font-weight: 600;
}
.nav a.nav-current::after {
  width: 100%;
}

/* About page: image bigger and centered */
.about-story {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.about-story h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}
.about-story p {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.about-story .section-highlight,
.about-story .section-highlight h3,
.about-story .key-points li {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.about-story .two-column {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
}
.about-image-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}
.about-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

/* About page: Our Values segment (full-bleed image + overlay + text) */
.about-values {
  position: relative;
  min-height: 100%;
  padding: 64px 0 72px;
}
.about-values-bg {
  position: absolute;
  inset: 0;
}
.about-values-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-values-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 32, 0.78);
  pointer-events: none;
}
.about-values-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  color: #f5f5f2;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.about-values-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 32px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-values-block {
  margin-bottom: 28px;
}
.about-values-block:last-child {
  margin-bottom: 0;
}
.about-values-block h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}
.about-values-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/* Mission & Vision page: full-bleed video segment with text overlay */
.mv-segment {
  position: relative;
  min-height: 100%;
  padding: 64px 0 72px;
}
.mv-segment-bg {
  position: absolute;
  inset: 0;
}
.mv-segment-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mv-segment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 32, 0.82);
  pointer-events: none;
}
.mv-segment-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  color: #f5f5f2;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.mv-block {
  margin-bottom: 40px;
}
.mv-block:last-child {
  margin-bottom: 0;
}
.mv-heading {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mv-block p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}
.mv-block p:last-child {
  margin-bottom: 0;
}

/* For Partners page: full-bleed video segment (Why Choose Us) */
.fp-segment {
  position: relative;
  min-height: 100%;
  padding: 64px 0 72px;
}
.fp-segment-bg {
  position: absolute;
  inset: 0;
}
.fp-segment-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fp-segment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 32, 0.82);
  pointer-events: none;
}
.fp-segment-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  color: #f5f5f2;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.fp-segment-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 32px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fp-block {
  margin-bottom: 28px;
}
.fp-block:last-child {
  margin-bottom: 0;
}
.fp-block h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}
.fp-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

/* Contact strip: video background at bottom of every page */
.contact-strip {
  position: relative;
  min-height: 36vh;
  padding: 56px 0 64px;
  overflow: hidden;
}
.contact-strip-bg {
  position: absolute;
  inset: 0;
}
.contact-strip-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.contact-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 32, 0.8);
  pointer-events: none;
}
.contact-strip-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #f5f5f2;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}
.contact-strip-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-strip-details {
  margin-bottom: 24px;
}
.contact-strip-details p {
  margin: 0 0 4px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}
.contact-strip-name {
  font-weight: 600;
  margin-bottom: 8px !important;
}
.contact-strip-email a {
  color: var(--green-light);
}
.contact-strip-email a:hover {
  text-decoration: underline;
}
.contact-strip-cta {
  margin: 0;
}
.contact-strip-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  border: none;
}
.contact-strip-btn:hover {
  background: #fff;
  color: var(--green-deep);
}

/* Dry Fruits page: chessboard layout */
.fruit-row {
  padding: 40px 0;
}
.fruit-row-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.fruit-row--image-right .fruit-row-inner {
  direction: rtl;
}
.fruit-row--image-right .fruit-row-inner > * {
  direction: ltr;
}
.fruit-row-media {
  min-width: 0;
  overflow: hidden;
}
.fruit-image-placeholder {
  aspect-ratio: 4 / 3;
  max-height: 280px;
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border-subtle);
  background: rgba(212, 229, 217, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.fruit-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-xl);
}
.fruit-row-content {
  min-width: 0;
}
.fruit-row-content h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
}
.fruit-row-content p {
  margin: 0 0 10px;
  color: var(--muted);
}
.fruit-row-content .product-note {
  margin-bottom: 0;
  font-size: 0.88rem;
}
.range-intro {
  margin-bottom: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .fruit-row-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
  .fruit-row--image-right .fruit-row-inner {
    direction: ltr;
  }
  .fruit-row-media {
    order: -1;
  }
  .fruit-image-placeholder {
    max-height: 280px;
  }
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.section-highlight {
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
}

.section-highlight h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.key-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.origin-cards {
  display: grid;
  gap: 14px;
}

.origin-card {
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
}

.origin-card h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.origin-card p {
  margin: 0;
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  padding: 14px 14px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
}

.product-card h3 {
  margin: 0 0 6px;
  text-align: center;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
}

.product-note {
  margin-top: 8px;
  color: var(--muted);
}

.range-note {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
}

.dry-fruits-range-section {
  padding-bottom: 0;
}

/* Dry Fruits page: background request segment */
.dry-fruits-cta {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
}

.dry-fruits-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dry-fruits-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dry-fruits-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 38, 32, 0.82);
  pointer-events: none;
  z-index: 1;
}

.dry-fruits-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 920px;
  margin: 0 auto;
}

.dry-fruits-cta .range-note {
  margin-top: 0;
  color: rgba(245, 245, 242, 0.96);
  font-size: 1.08rem;
  max-width: 52rem;
}

.dry-fruits-cta-btn {
  margin: 22px 0 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .dry-fruits-cta {
    padding: 58px 0;
  }
  .dry-fruits-cta .range-note {
    font-size: 1rem;
  }
}

.sustainability-list {
  border-radius: var(--radius-lg);
  padding: 16px 18px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
}

.sustainability-list h3 {
  margin-top: 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
}

.contact-block {
  margin-top: 16px;
  padding: 14px 14px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.contact-name {
  margin: 0 0 4px;
  font-weight: 600;
}

.contact-line {
  margin: 2px 0;
}

.contact-line a {
  color: var(--green-deep);
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-note {
  border-radius: var(--radius-lg);
  padding: 16px 18px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 26px 0 28px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--green-light) 100%);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-left {
  flex-shrink: 0;
}

.footer-brand {
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--green-dark);
}

.footer-contact p {
  margin: 0 0 2px;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-contact a {
  color: var(--green-deep);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  margin: 0 0 8px;
}

.footer-credit {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
}

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

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .two-column,
  .contacts-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .logo {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .logo-img {
    max-width: min(280px, 84vw);
  }

  .logo-tagline {
    max-width: min(300px, 88vw);
    margin-top: -8px;
    text-align: center;
  }

  .header-nav-cluster {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .nav a {
    padding: 8px 6px;
    font-size: 0.84rem;
  }

  .lang-switcher {
    align-self: center;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 34px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

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

  .footer-links {
    justify-content: center;
  }
}

