  :root {
    --navy: #0d1b2a;
    --red: #c5372c;
    --orange: #e07b2a;
    --green: #3a8c3f;
    --cream: #f5f0e8;
    --cream-dark: #ede5d4;
    --text: #2c2416;
    --text-light: #6b5d4f;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav.header-menu {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 60px;

    background: rgba(13,27,42,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #747474;
    transition: all 0.3s;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo svg { height: 44px; width: auto; }


  .navbar-toggler{display: none;}
  .nav-links {
    display: flex; gap: 38px; list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none; font-size: 0.82rem;
    font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }

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

  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.nav-active { color: #fff; }
  .nav-links a.nav-active::after { width: 100%; background: var(--orange); }

  .nav-cta {
    background: var(--red); color: #fff !important;
    padding: 9px 22px; border-radius: 2px;
    font-weight: 500 !important;
  }

  .nav-cta:hover { background: #a52e24 !important; }
  .nav-cta::after { display: none !important; }
  .contact-info-text{margin-top:20px; padding:28px; background:var(--cream-dark); border-radius:4px; border-left:3px solid var(--green);}
  /* ─── PAGE SYSTEM ─── */
  .page {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    min-height: 100vh;
    will-change: opacity, transform;
  }

  .company-section p{
	  font-size:0.97rem; 
	  line-height:1.9; 
	  color:var(--text-light); 
	  margin-bottom:20px; 
	  font-weight:300;
   }

  .page.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .page.exiting {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
.company-fade-inner{background:var(--cream); border-radius:3px; padding:28px 32px; border-left:3px solid var(--green);}
  #page-wrapper {
    position: relative;
    overflow: hidden;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 80% 50%, rgba(197,55,44,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 20% 80%, rgba(58,140,63,0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 50% 20%, rgba(224,123,42,0.08) 0%, transparent 60%);
  }

  /* Organic pattern */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 60px;
    max-width: 780px;
    animation: heroFade 1.2s ease forwards;
  }

  @keyframes heroFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Ensure hero content is always visible even if animation fails */
  .hero-content { opacity: 1; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px; padding: 6px 18px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.7); font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase;
  }

  .hero-tag span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); display: inline-block;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300; line-height: 1.12;
    color: #fff; margin-bottom: 28px;
  }

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

  .hero h1 strong {
    font-weight: 600; display: block;
    color: var(--cream);
  }

  .hero-sub {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 520px; margin-bottom: 48px;
    font-weight: 300;
  }

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

  .btn-primary {
    background: var(--red); color: #fff;
    padding: 14px 36px; border-radius: 2px;
    text-decoration: none; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.3s; border: none; cursor: pointer;
    display: inline-block;
  }

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

  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.8);
    padding: 14px 36px; border-radius: 2px;
    text-decoration: none; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.3s; border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer; display: inline-block;
  }

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

  .hero-visual {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 45%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-plant {
    width: 360px; opacity: 0.12;
    animation: floatPlant 8s ease-in-out infinite;
  }

  @keyframes floatPlant {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
  }

  .hero-pillars {
    position: absolute; right: 60px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 20px;
    z-index: 2;
  }

  .pillar-chip {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px; padding: 14px 20px;
    animation: slideLeft 0.8s ease forwards;
    opacity: 1;
    min-width: 200px;
  }

  .pillar-chip:nth-child(1) { animation-delay: 0.4s; }
  .pillar-chip:nth-child(2) { animation-delay: 0.6s; }
  .pillar-chip:nth-child(3) { animation-delay: 0.8s; }

  @keyframes slideLeft {
    from { opacity: 0.3; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .pillar-dot {
    width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  }

  .pillar-chip span {
    color: rgba(255,255,255,0.8); font-size: 0.8rem;
    font-weight: 500; letter-spacing: 0.05em;
  }

  .pillar-chip small {
    display: block; color: rgba(255,255,255,0.4);
    font-size: 0.7rem; font-weight: 300;
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 100px 60px; }

  .section-label {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
  }

  .section-label::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--orange);
  }

  .section-label span {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--orange); font-weight: 500;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400; line-height: 1.2;
    color: var(--navy); margin-bottom: 20px;
  }

  .section-title em { font-style: italic; color: var(--red); }

  .section-body {
    font-size: 1rem; line-height: 1.85;
    color: var(--text-light); font-weight: 300;
    max-width: 600px;
  }
.section-body p:not(:first-child){
	margin-top:20px;
}

  /* ─── VALUES STRIP ─── */
  .values-strip {
    background: var(--navy);
    padding: 24px 60px;
    display: flex; justify-content: center; gap: 60px;
    flex-wrap: wrap;
  }

  .strip-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7); font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500;
  }

  .strip-item svg { opacity: 0.7; }

  /* ─── STORY SECTION ─── */
  .story-section {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    background: var(--cream);
  }

  .story-image-wrap {
    position: relative;
  }

  .story-img-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3450 100%);
    border-radius: 4px; aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }

  .story-img-placeholder svg {
    width: 200px; opacity: 0.15;
  }

  .story-img-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(197,55,44,0.2) 100%);
  }

  .story-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--orange); border-radius: 2px;
    z-index: -1; opacity: 0.6;
  }

  .story-quote {
    margin-top: 40px;
    border-left: 3px solid var(--red);
    padding-left: 24px;
  }

  .story-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; line-height: 1.6; font-style: italic;
    color: var(--navy); margin-bottom: 12px;
  }

  .story-quote cite {
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); font-style: normal;
  }

  /* ─── THREE PILLARS ─── */
  .pillars-section {
    background: var(--cream-dark);
  }

  .pillars-header {
    text-align: center; margin-bottom: 70px;
  }

  .pillars-header .section-label {
    justify-content: center;
  }

  .pillars-header .section-label::before { display: none; }
  .pillars-header .section-label::after {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--orange);
  }

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

  .pillar-card {
    background: var(--cream);
    padding: 52px 40px;
    position: relative; overflow: hidden;
    transition: transform 0.3s;
  }

  .pillar-card:hover { transform: translateY(-6px); }

  .pillar-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
  }

  .pillar-card.earth::before { background: #8B6914; }
  .pillar-card.vitality::before { background: var(--red); }
  .pillar-card.nature::before { background: var(--green); }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300;
    line-height: 1; margin-bottom: 20px;
    opacity: 0.12; color: var(--navy);
  }

  .pillar-icon-wrap {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }

  .earth .pillar-icon-wrap { background: rgba(139,105,20,0.12); }
  .vitality .pillar-icon-wrap { background: rgba(197,55,44,0.12); }
  .nature .pillar-icon-wrap { background: rgba(58,140,63,0.12); }

  .pillar-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 600;
    color: var(--navy); margin-bottom: 14px;
  }

  .pillar-card p {
    font-size: 0.92rem; line-height: 1.8;
    color: var(--text-light); font-weight: 300;
  }

  .pillar-keyword {
    display: inline-block; margin-top: 20px;
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 600; padding: 5px 0;
    border-bottom: 1px solid currentColor;
  }

  .earth .pillar-keyword { color: #8B6914; }
  .vitality .pillar-keyword { color: var(--red); }
  .nature .pillar-keyword { color: var(--green); }

  /* ─── MISSION ─── */
  .mission-section {
    background: var(--navy);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .mission-btn-wraper{margin-top:35px; position:relative; z-index:1;}

  .mission-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(197,55,44,0.1) 0%, transparent 70%);
  }

  .mission-section .section-label { justify-content: center; }
  .mission-section .section-label::before {
    background: rgba(255,255,255,0.3);
  }
  .mission-section .section-label span { color: rgba(255,255,255,0.5); }

  .mission-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.3;
    color: #fff; max-width: 900px; margin: 0 auto 50px;
    position: relative; z-index: 1;
  }

  .mission-statement em { font-style: italic; color: var(--orange); }

  .mission-stats {
    display: flex; justify-content: center; gap: 80px;
    position: relative; z-index: 1; flex-wrap: wrap;
  }

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

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 600;
    color: #fff; display: block; line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); font-weight: 400;
  }

  /* ─── ABOUT PAGE ─── */
  .about-hero {
    background: var(--navy);
    padding: 160px 60px 100px;
    position: relative; overflow: hidden;
  }

  .about-hero::after {
    content: '';
    position: absolute; right: -100px; bottom: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
  }

  .about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300; color: #fff; line-height: 1.15;
    max-width: 800px; margin-bottom: 24px;
  }

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

  .about-hero p {
    color: rgba(255,255,255,0.6); font-size: 1.05rem;
    line-height: 1.8; max-width: 560px; font-weight: 300;
  }

  .about-story {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    padding: 100px 60px; background: var(--cream);
  }

  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--navy); margin-bottom: 28px;
    line-height: 1.25;
  }

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

  .timeline {
    padding: 100px 60px; background: var(--cream-dark);
  }

  .timeline h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--navy);
    margin-bottom: 60px;
  }

  .timeline-items { position: relative; }

  .timeline-items::before {
    content: ''; position: absolute;
    left: 12px; top: 0; bottom: 0;
    width: 1px; background: var(--cream-dark);
    border-left: 1px dashed rgba(13,27,42,0.15);
  }

  .tl-item {
    display: flex; gap: 40px; margin-bottom: 50px;
    position: relative;
  }

  .tl-dot {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--cream-dark); border: 2px solid var(--navy);
    flex-shrink: 0; margin-top: 4px; position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }

  .tl-dot::after {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--red); display: block;
  }

  .tl-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--navy); margin-bottom: 8px;
  }

  .tl-content p {
    font-size: 0.9rem; line-height: 1.75;
    color: var(--text-light); font-weight: 300;
  }

  .team-section {
    padding: 100px 60px; background: var(--cream);
  }

  .team-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: var(--navy); margin-bottom: 60px;
  }

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

  .team-card {
    background: var(--cream-dark); border-radius: 4px;
    overflow: hidden;
  }

  .team-photo {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3450 100%);
    aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
  }

  .team-photo svg { width: 80px; opacity: 0.2; }

  .team-info { padding: 24px 28px; }

  .team-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--navy); margin-bottom: 4px;
  }

  .team-role {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 12px; display: block;
  }

  .team-info p {
    font-size: 0.88rem; line-height: 1.75;
    color: var(--text-light); font-weight: 300;
  }

  /* ─── VALUES PAGE ─── */
  .values-hero {
    background: var(--navy);
    padding: 160px 60px 100px;
  }

  .values-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300; color: #fff; line-height: 1.15;
    max-width: 800px; margin-bottom: 24px;
  }

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

  .values-hero p {
    color: rgba(255,255,255,0.6); font-size: 1.05rem;
    line-height: 1.8; max-width: 560px; font-weight: 300;
  }

  .values-manifesto {
    padding: 100px 60px; background: var(--cream);
  }

  .manifesto-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 80px;
    margin-top: 60px;
  }

  .manifesto-item {
    border-top: 1px solid rgba(13,27,42,0.1);
    padding-top: 36px;
  }

  .manifesto-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem; letter-spacing: 0.2em;
    color: var(--orange); margin-bottom: 16px; display: block;
  }

  .manifesto-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: var(--navy); margin-bottom: 14px;
  }

  .manifesto-item p {
    font-size: 0.93rem; line-height: 1.85;
    color: var(--text-light); font-weight: 300;
  }

  .brand-story-section {
    background: var(--navy);
    padding: 100px 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .brand-story-section .section-label span { color: rgba(255,255,255,0.5); }
  .brand-story-section .section-label::before { background: rgba(255,255,255,0.3); }

  .brand-story-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: #fff; margin-bottom: 28px; line-height: 1.25;
  }

  .brand-story-section h2 em { font-style: italic; color: var(--orange); }

  .brand-story-section p {
    font-size: 0.97rem; line-height: 1.9;
    color: rgba(255,255,255,0.6); margin-bottom: 20px; font-weight: 300;
  }

  .story-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px; padding: 48px;
    display: flex; flex-direction: column; gap: 28px;
  }

  .story-tag {
    display: flex; align-items: center; gap: 16px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /*.story-tag:last-child { border-bottom: none; padding-bottom: 0; } */
  .story-tag-icon {
    width: 40px; height: 40px; border-radius: 50%;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }

  .story-tag-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: #fff; margin-bottom: 4px;
  }

  .story-tag-text p {
    font-size: 0.82rem; color: rgba(255,255,255,0.45);
    margin: 0; line-height: 1.5;
  }

  /* ─── CONTACT PAGE ─── */
  .contact-hero {
    background: var(--navy);
    padding: 160px 60px 100px;
  }

  .contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300; color: #fff; line-height: 1.15;
    margin-bottom: 24px;
  }

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

  .contact-hero p {
    color: rgba(255,255,255,0.6); font-size: 1.05rem;
    line-height: 1.8; max-width: 480px; font-weight: 300;
  }

  .contact-section {
    padding: 100px 60px; background: var(--cream);
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }

  .contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; color: var(--navy); margin-bottom: 36px;
  }

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

  .contact-detail-icon {
    width: 44px; height: 44px; border-radius: 2px;
    background: var(--cream-dark); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }

  .contact-detail h4 {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 6px;
  }

  .contact-detail p {
    font-size: 0.95rem; color: var(--navy); line-height: 1.6;
  }

  .contact-form-wrap {
    background: var(--cream-dark); border-radius: 4px; padding: 52px;
  }

  .contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: var(--navy); margin-bottom: 36px;
  }

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

  .form-group { display: flex; flex-direction: column; }

  .form-group label {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 8px; font-weight: 500;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--cream); border: 1px solid rgba(13,27,42,0.12);
    border-radius: 2px; padding: 13px 16px;
    font-family: 'Jost', sans-serif; font-size: 0.92rem;
    color: var(--text); outline: none;
    transition: border-color 0.2s;
  }

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

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

  .form-full { grid-column: 1/-1; }

  .contact-form-wrap .btn-primary {
    margin-top: 24px; width: 100%; text-align: center;
    font-size: 0.82rem; letter-spacing: 0.15em;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #080f18; padding: 80px 60px 40px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: #fff; margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 0.88rem; line-height: 1.8;
    color: rgba(255,255,255,0.4); font-weight: 300;
    max-width: 280px;
  }

  .footer-tagline {
    display: inline-block; margin-top: 20px;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--orange); border-top: 1px solid var(--orange);
    padding-top: 10px;
  }

  .footer-col h4 {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 15px; font-weight: 500;
  }

  .footer-col ul { list-style: none; }

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

  .footer-col ul li a {
    color: rgba(255,255,255,0.45); text-decoration: none;
    font-size: 0.88rem; transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; flex-wrap: wrap; gap: 16px;
  }

  .footer-copy {
    font-size: 0.78rem; color: rgba(255,255,255,0.25);
  }

  .footer-social {
    display: flex; gap: 16px;
  }

  .social-btn {
    width: 36px; height: 36px; border-radius: 2px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem;
    transition: all 0.2s;
  }

  .social-btn:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 991px) {
    
    .nav-links { display: none; }
    section { padding: 70px 24px; }
    .hero-content{ padding: 50px 0px; }
    .hero-pillars { display: none; }
    .story-section,
    .about-story,
    .brand-story-section,
    .contact-section,
    .agritech-grid,
    .mushroom-grid { grid-template-columns: 1fr; gap: 40px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-top { gap: 15px;grid-template-columns: repeat(2,1fr);padding-bottom:0px; }
    .footer-brand p{max-width:100%;}
	.footer-bottom{padding-top: 20px;padding-bottom: 20px;}
    .form-row { grid-template-columns: 1fr; }
    .mission-stats { gap: 40px; }
    .values-strip { gap: 28px; }
    .manifesto-grid { grid-template-columns: 1fr; }
    .tech-features { grid-template-columns: 1fr; }
    .mushroom-visual { grid-template-columns: 1fr; }
    .mushroom-card.span2 { grid-column: 1; }
    .vision-pillars { gap: 28px; }
    .company-banner { padding: 10px 24px; font-size: 0.68rem; }
  }

  /* ─── COMPANY BANNER ─── */
  .company-section{background:var(--cream-dark); padding:100px 60px;}
  .company-inner-section{display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;}
  .company-banner {
    background: var(--cream-dark);
    border-bottom: 1px solid rgba(13,27,42,0.08);
    padding: 12px 60px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-light);
  }

  .company-banner strong {
    color: var(--navy); font-weight: 600;
  }

  .company-banner::before,
  .company-banner::after {
    content: '—'; opacity: 0.3;
  }

  /* ─── AGRITECH SECTION ─── */
  .agritech-section {
    background: var(--navy);
    padding: 100px 60px;
  }

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

  .agritech-section .section-label span { color: rgba(255,255,255,0.45); }
  .agritech-section .section-label::before { background: rgba(255,255,255,0.25); }

  .agritech-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: #fff; margin-bottom: 28px; line-height: 1.25;
  }

  .agritech-section h2 em { font-style: italic; color: var(--green); }

  .agritech-section p {
    font-size: 0.97rem; line-height: 1.9;
    color: rgba(255,255,255,0.6); margin-bottom: 20px; font-weight: 300;
  }

  .tech-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
  }

  .tech-feature {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 3px; padding: 20px;
    transition: background 0.3s;
  }

  .tech-feature:hover { background: rgba(255,255,255,0.07); }

  .tech-feature-icon {
    font-size: 1.4rem; margin-bottom: 10px; display: block;
  }

  .tech-feature h5 {
    font-size: 0.82rem; font-weight: 600; color: #fff;
    letter-spacing: 0.04em; margin-bottom: 6px;
  }

  .tech-feature p {
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    line-height: 1.6; margin: 0;
  }

  .agritech-visual {
    display: flex; flex-direction: column; gap: 20px;
  }

  .farm-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 3px; padding: 28px 32px;
    display: flex; align-items: center; gap: 24px;
  }

  .farm-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 600; color: var(--green);
    line-height: 1; flex-shrink: 0;
  }

  .farm-stat-label h5 {
    font-size: 0.88rem; font-weight: 600; color: #fff; margin-bottom: 4px;
  }

  .farm-stat-label p {
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    line-height: 1.5; margin: 0;
  }

  /* ─── MUSHROOM FARM SECTION ─── */
  .mushroom-section {
    background: #0a1f0c;
    padding: 100px 60px;
    position: relative; overflow: hidden;
  }

  .mushroom-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(58,140,63,0.15) 0%, transparent 70%);
  }

  .mushroom-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; position: relative; z-index: 1;
  }

  .mushroom-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(58,140,63,0.15); border: 1px solid rgba(58,140,63,0.3);
    border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
    color: #6dcc74; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  }

  .mushroom-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); display: block;
    animation: pulse 2s infinite;
  }

  .mushroom-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400; color: #fff; margin-bottom: 28px; line-height: 1.25;
  }

  .mushroom-section h2 em { font-style: italic; color: #6dcc74; }

  .mushroom-section p {
    font-size: 0.97rem; line-height: 1.9;
    color: rgba(255,255,255,0.6); margin-bottom: 20px; font-weight: 300;
  }

  .mushroom-varieties {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
  }

  .variety-tag {
    background: rgba(58,140,63,0.15); border: 1px solid rgba(58,140,63,0.25);
    border-radius: 2px; padding: 6px 14px;
    font-size: 0.78rem; color: #6dcc74; letter-spacing: 0.06em;
  }

  .mushroom-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }

  .mushroom-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(58,140,63,0.15);
    border-radius: 3px; padding: 28px 20px; text-align: center;
  }

  .mushroom-card-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }

  .mushroom-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: #fff; margin-bottom: 6px;
  }

  .mushroom-card p {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    line-height: 1.6; margin: 0;
  }

  .mushroom-card.span2 { grid-column: 1/-1; text-align: left; display: flex; align-items: center; gap: 20px; }
  .mushroom-card.span2 .mushroom-card-icon { font-size: 2rem; margin: 0; flex-shrink: 0; }
  .mushroom-card.span2 h5 { margin-bottom: 4px; }

  /* ─── VISION SECTION ─── */
  .vision-section {
    background: var(--cream-dark);
    padding: 100px 60px;
    text-align: center;
  }

  .vision-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 300; line-height: 1.35;
    color: var(--navy); max-width: 860px; margin: 0 auto 52px;
  }

  .vision-statement em { font-style: italic; color: var(--red); }

  .vision-pillars {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  }

  .vision-pillar {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    max-width: 200px;
  }

  .vision-pillar-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--cream); border: 2px solid rgba(13,27,42,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }

  .vision-pillar h5 {
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    letter-spacing: 0.08em; text-align: center;
  }

  .vision-pillar p {
    font-size: 0.78rem; color: var(--text-light);
    text-align: center; line-height: 1.6;
  }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.hidden {
    opacity: 0; transform: translateY(24px);
  }

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

footer a.nav-logo {
    margin-bottom: 15px;
}

/*Toggler menu*/
@media(max-width:991px){
    .navbar-toggler{display:inline-block;width:25px; height:15px;background: transparent;border: 0; padding:0; margin:0px; -webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:.5s ease-in-out;-moz-transition:.5s ease-in-out;-o-transition:.5s ease-in-out;transition:.5s ease-in-out;cursor:pointer;outline:none;}
    .navbar-toggler:focus{outline:none;}
    .navbar-toggler span.touch-button{display:none;}
    .navbar-toggler span{display:block;position:absolute;height:2px;width:100%;background:#fff;border-radius:0px;opacity:1;left:0;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:.25s ease-in-out;-moz-transition:.25s ease-in-out;-o-transition:.25s ease-in-out;transition:.25s ease-in-out;}
    .navbar-toggler span:nth-child(1){top:0px;}
    .navbar-toggler span:nth-child(2),.navbar-toggler span:nth-child(3){top:6px; left: 0px; }
    .navbar-toggler span:nth-child(4){top:12px;}
    .navbar-toggler.open span:nth-child(1){top:10px;width:0%;left:50%;}
    .navbar-toggler.open span:nth-child(2){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);}
    .navbar-toggler.open span:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);}
    .navbar-toggler.open span:nth-child(4){top:18px;width:0%;left:50%;}
    body.open-menu{position:fixed;top:0;width:100%;height:100%;overflow:hidden;}
    .open-menu nav.show{z-index: 9999;}
    .overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:var(--navy);z-index:999;transition: all 0.5s ease 0s; -moz-transition: all 0.5s ease 0s;  -ms-transition: all 0.5s ease 0s; -o-transition: all 0.5s ease 0s;  -webkit-transition: all 0.5s ease 0s;opacity:0;visibility:hidden;}
    .overlay.show{opacity:1;visibility:visible;}
    /*body.open-menu nav.show {border-bottom: 1px solid #f1ebeb6b;}*/
    /*nav.show ul.nav-links{display: block;}*/
    /*nav.show {display: block;border-bottom: 0px;}*/
    nav.show .nav-links > li {border-bottom: 1px solid #ede1e161;margin: 0;}
    nav.show .nav-links > li > a {padding: 15px 15px;display: block;}
    nav.show .nav-links a::after{bottom: -1px;}
    nav { padding: 15px 15px; }
    .nav-links {margin-top: 16px;border-top: 1px solid #747474;position: absolute;width: 100%;left: 0px;top: 58px;}
    nav.show .nav-links{display: block;}
    .hero{min-height: 62vh;padding: 50px 15px}
    section {padding: 50px 15px;}
    .about-hero{padding: 100px 15px;}
    .story-section, .about-story, .brand-story-section, .contact-section, .agritech-grid, .mushroom-grid{gap:25px;}
    .vision-section{padding: 50px 15px;}
    .agritech-grid{grid-template-columns: auto;}
    .agritech-section{padding: 50px 15px;}
    .mushroom-section{padding: 50px 15px;}
    .tech-features{gap: 20px;}
    .mushroom-grid{grid-template-columns:auto;}
    footer{padding: 50px 15px 0px;}
    .about-story{padding: 50px 15px;}
    .company-section{padding:50px 15px;}
    .company-inner-section{grid-template-columns:auto;gap: 30px;}
    .timeline{padding: 50px 15px}
    .timeline h2{margin-bottom:28px;}
    .timeline-items .tl-item{gap: 20px;margin-bottom: 20px;}
    .team-section{padding: 50px 15px;}
    .team-section h2{margin-bottom:28px;}
    .team-grid{grid-template-columns: repeat(2, 1fr);}
    .values-hero{padding: 100px 15px;}
    .values-manifesto{padding: 50px 15px;}
    .manifesto-grid{ gap: 20px 20px;margin-top: 20px;grid-template-columns: repeat(2, 1fr);}
    .story-visual{display: grid;gap: 20px 20px;grid-template-columns: repeat(2, 1fr);padding: 10px;}
    .brand-story-section {padding: 50px 15px;}
    .brand-story-section h2{margin-bottom: 20px;}
    .values-hero h1{margin-bottom: 20px;}
    .contact-hero,.contact-section{padding: 100px 15px;}
    .hero-tag{margin-bottom: 20px;}
    .hero-sub{margin-bottom: 20px;}
    .contact-info-wrap {display: grid;grid-template-columns: repeat(2, 1fr);gap: 25px;}
    .contact-section .contact-form-wrap{padding: 20px;}
    .contact-info-text{padding: 20px;}
    .story-tag:nth-last-child(-n+2) {border-bottom: none;}
    .farm-stat-card,.mushroom-card,.pillar-card,.story-quote,.company-fade-inner,.team-info{padding: 20px;}
    .manifesto-item{padding: 20px 0px;}
    .contact-detail{align-items:center;}

}
@media(max-width: 767px){
  .values-strip {overflow-x: auto;display: flex;flex-wrap: nowrap;justify-content: flex-start;padding: 20px;gap: 20px;}
  .strip-item{flex: 0 0 auto;}
  .footer-content{display:none;}
  .footer-content.open{display:block;}
  .footer-toggle{cursor:pointer;position:relative;}
  .footer-toggle::after{content:"+";position:absolute;right:0;}
  .footer-toggle.active::after{content:"-";}
  .footer-brand p{max-width: 100%;}
  .footer-top{grid-template-columns: repeat(1, 1fr);}
  .mission-stats{display: grid;grid-template-columns: repeat(2, 1fr);}
}

@media(max-width:567px){
  .story-visual{padding:10px;}
  .team-grid{grid-template-columns: repeat(1, 1fr);}
  .manifesto-grid{grid-template-columns: repeat(1, 1fr);}
  .story-visual{grid-template-columns: repeat(1, 1fr);}
  .story-tag:last-child { border-bottom: none; padding-bottom: 0; }
  .variety-tag{font-size: 0.65rem;}
}


@media(max-width: 498px){
    .mission-btn-wraper a.btn-primary{margin-bottom: 10px;}
    .contact-info-wrap{grid-template-columns: repeat(1, 1fr)}
}

.company-banner {
    display: none;
}


/*@media (min-width: 768px) and (max-width: 991px) {

}*/