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

:root {
  --wheat:     #F5C842;
  --wheat-lt:  #FDF3C8;
  --wheat-mid: #F0B429;
  --green:     #2E7D32;
  --green-lt:  #E8F5E9;
  --teal:      #00838F;
  --teal-lt:   #E0F4F6;
  --flame:     #E65100;
  --navy:      #1A3A2B;
  --body-bg:   #FEFCF4;
  --card-bg:   #FFFFFF;
  --text-main: #1A2B47;
  --text-muted:#6B7A8D;
  --border:    #EDE8D8;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--body-bg);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: rgba(254,252,244,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 48px;
  transition: padding .3s, box-shadow .3s;
}
nav.scrolled { padding: 8px 48px; box-shadow: 0 4px 24px rgba(26,43,71,.09); }

.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.2rem;
  color: var(--text-main); letter-spacing: .01em;
}
.logo-name span { color: var(--teal); }
.logo-sub {
  font-size: .6rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--wheat-mid);
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .87rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { color: var(--teal); }

.nav-cta {
  padding: 9px 24px; border-radius: 30px;
  background: linear-gradient(135deg, var(--wheat), var(--wheat-mid));
  color: var(--navy); font-weight: 700; font-size: .83rem;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; box-shadow: 0 3px 14px rgba(245,200,66,.3);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,200,66,.4); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 128px 0px 0px;
  background: linear-gradient(180deg, var(--wheat-lt) 0%, var(--body-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-120px; right:-100px;
  width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,200,66,.25) 0%,transparent 70%);
  pointer-events:none;
}
.page-hero .sec-eyebrow { justify-content: center; display: flex; }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.15;
  letter-spacing: -.02em; color: var(--text-main);
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--wheat-mid), var(--flame));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p.lead {
  font-size: 1rem; color: var(--text-muted); max-width: 620px;
  margin: 16px auto 0; line-height: 1.75;
}
.breadcrumb {
  font-size: .78rem; color: var(--text-muted); margin-top: 18px;
  letter-spacing: .03em;
}
.breadcrumb a { color: var(--teal); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SHARED SECTION BITS ── */
.sec-eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text-main); letter-spacing: -.02em;
}
.sec-header h2 span { color: var(--teal); }
.sec-header p {
  font-size: .96rem; color: var(--text-muted); max-width: 560px;
  margin: 10px auto 0; line-height: 1.7;
}

/* ── ABOUT (reused pattern) ── */
.about-section {
  padding: 90px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1260px; margin: 0 auto;
}
.about-section h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2;
  letter-spacing: -.02em; color: var(--text-main); margin-bottom: 20px;
}
.about-section h2 span {
  background: linear-gradient(135deg, var(--wheat-mid), var(--flame));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-section p { font-size: .96rem; line-height: 1.82; color: var(--text-muted); margin-bottom: 14px; }

.narrow-copy { max-width: 900px; margin: 0 auto; padding: 90px 60px; }
.narrow-copy p { font-size: 1rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.narrow-copy h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--text-main);
  margin: 46px 0 18px; letter-spacing: -.02em;
}
.narrow-copy h2:first-of-type{ margin-top:0; }

.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 18px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.pillar-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-4px); border-color: var(--wheat); }
.p-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 10px;
}
.ic-teal  { background: var(--teal-lt); }
.ic-green { background: var(--green-lt); }
.ic-wheat { background: var(--wheat-lt); }
.ic-flame { background: #FFF3E0; }
.pillar-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: .92rem; color: var(--text-main); margin-bottom: 5px; }
.pillar-card p { font-size: .81rem; color: var(--text-muted); line-height: 1.65; }

/* ── PRODUCTS (reused pattern) ── */
.products-section { background: linear-gradient(180deg, var(--wheat-lt) 0%, var(--body-bg) 100%); padding: 90px 48px; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1160px; margin: 0 auto; }
.prod-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 18px; padding: 34px 26px;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.prod-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-5px); }
.prod-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 18px 18px 0 0; }
.ac-w { background: linear-gradient(90deg,var(--wheat),var(--wheat-mid)); }
.ac-g { background: linear-gradient(90deg,var(--green),#66BB6A); }
.ac-t { background: linear-gradient(90deg,var(--teal),#00ACC1); }
.p-ico { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.prod-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--text-main); margin-bottom: 10px; }
.prod-card p { font-size: .87rem; line-height: 1.75; color: var(--text-muted); }
.prod-tag { display: inline-block; margin-top: 16px; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.tw { background: var(--wheat-lt); color: var(--wheat-mid); }
.tg { background: var(--green-lt); color: var(--green); }
.tt { background: var(--teal-lt); color: var(--teal); }

/* ── PROCESS STEPS (product / innovation pages) ── */
.process-wrap { max-width: 1160px; margin: 0 auto; padding: 0 48px 90px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 26px 20px; position: relative; }
.process-num {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.6rem;
  color: var(--wheat); opacity: .55; margin-bottom: 10px;
}
.process-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: .95rem; color: var(--text-main); margin-bottom: 8px; }
.process-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ── INNOVATION (reused pattern) ── */
.innov-wrap { padding: 80px 48px; max-width: 1260px; margin: 0 auto; }
.innov-box {
  background: var(--navy); border-radius: 24px; padding: 60px 56px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.innov-box::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:350px; height:350px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,200,66,.13) 0%,transparent 70%);
  pointer-events:none;
}
.innov-box .sec-eyebrow { color: var(--wheat); }
.innov-box h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.6rem,2.5vw,2.3rem); color:#fff;
  line-height:1.2; letter-spacing:-.02em; margin-bottom:14px;
}
.innov-box h2 em { font-style:normal; color:var(--wheat); }
.innov-lp { font-size:.93rem; line-height:1.8; color:rgba(255,255,255,.6); margin-bottom:28px; }

.btn-w {
  padding:12px 30px; border-radius:30px;
  background:linear-gradient(135deg,var(--wheat),var(--wheat-mid));
  color:var(--navy); font-weight:700; font-size:.86rem;
  letter-spacing:.04em; text-transform:uppercase;
  text-decoration:none; display:inline-block;
  box-shadow:0 4px 18px rgba(245,200,66,.35);
  transition:transform .2s,box-shadow .2s;
}
.btn-w:hover { transform:translateY(-2px); box-shadow:0 8px 26px rgba(245,200,66,.5); }

.btn-outline {
  padding:11px 28px; border-radius:30px;
  border: 1.5px solid var(--navy); color: var(--navy);
  font-weight:700; font-size:.86rem; letter-spacing:.04em; text-transform:uppercase;
  text-decoration:none; display:inline-block; transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color:#fff; }

.diff-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.diff-list li { display:flex; gap:13px; align-items:flex-start; font-size:.9rem; line-height:1.6; color:rgba(255,255,255,.78); }
.chk {
  flex-shrink:0; width:21px; height:21px; border-radius:50%;
  background:rgba(245,200,66,.18); border:1.5px solid var(--wheat);
  display:flex; align-items:center; justify-content:center;
  font-size:.65rem; color:var(--wheat); margin-top:2px;
}

/* ── STATS ── */
.stats-band { background:var(--wheat-lt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); display:grid; grid-template-columns:repeat(4,1fr); }
.stat-box { padding:46px 32px; text-align:center; border-right:1px solid var(--border); }
.stat-box:last-child { border-right:none; }
.stat-n {
  font-family:'Playfair Display',serif; font-weight:800; font-size:clamp(1.8rem,3vw,2.6rem);
  background:linear-gradient(135deg,var(--wheat-mid),var(--flame));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-l { font-size:.8rem; color:var(--text-muted); margin-top:5px; letter-spacing:.03em; }

/* ── TEAM / PROFILES (Founder, Director, Advisor) ── */
.team-section { padding: 90px 48px; max-width: 1160px; margin: 0 auto; }
.notice-strip {
  max-width: 1160px; margin: 0 auto 50px; padding: 16px 22px;
  background: var(--teal-lt); border: 1px dashed var(--teal);
  border-radius: 12px; font-size: .82rem; color: var(--text-main); line-height: 1.6;
}
.notice-strip strong { color: var(--teal); }
.profile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.profile-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 28px; text-align: center;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.profile-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-5px); border-color: var(--wheat); }
.profile-photo {
  width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--teal-lt), var(--wheat-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.8rem; color: var(--teal);
  border: 3px solid var(--wheat-lt);
}
.profile-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--text-main); margin-bottom: 4px; }
.profile-role {
  display:inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--wheat-mid); font-weight: 700; margin-bottom: 16px;
  background: var(--wheat-lt); padding: 4px 14px; border-radius: 20px;
}
.profile-bio { font-size: .87rem; color: var(--text-muted); line-height: 1.75; text-align: left; }
.profile-socials { margin-top: 18px; display: flex; gap: 10px; justify-content: center; }
.profile-socials a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal-lt); color: var(--teal);
  display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: .8rem;
  transition: background .2s, color .2s;
}
.profile-socials a:hover { background: var(--teal); color: #fff; }

.advisor-strip { margin-top: 70px; }

/* ── CONTACT ── */
.contact-wrap { max-width: 1160px; margin: 0 auto; padding: 0 48px 100px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--navy); border-radius: 22px; padding: 46px 38px; color: #fff;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content:''; position:absolute; bottom:-90px; left:-70px; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,200,66,.14) 0%,transparent 70%); pointer-events:none;
}
.contact-info-card h3 { font-family:'Playfair Display', serif; font-weight:700; font-size:1.4rem; margin-bottom: 12px; }
.contact-info-card > p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 30px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(245,200,66,.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.contact-item h5 { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--wheat); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .9rem; color: rgba(255,255,255,.85); text-decoration: none; line-height: 1.5; }
.contact-item a:hover { text-decoration: underline; }
.contact-socials { display: flex; gap: 10px; margin-top: 34px; }
.contact-socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff;
  display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: .85rem;
  transition: background .2s;
}
.contact-socials a:hover { background: var(--wheat); color: var(--navy); }

.contact-form-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 22px; padding: 46px 40px; }
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-card > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-main); margin-bottom: 7px; letter-spacing: .02em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--body-bg); font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text-main);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,131,143,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  border: none; cursor: pointer; padding: 13px 34px; border-radius: 30px;
  background: linear-gradient(135deg, var(--wheat), var(--wheat-mid)); color: var(--navy);
  font-weight: 700; font-size: .86rem; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(245,200,66,.35); transition: transform .2s, box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(245,200,66,.5); }
.form-note { font-size: .76rem; color: var(--text-muted); margin-top: 14px; }

.map-strip { max-width: 1260px; margin: 0 auto 90px; padding: 0 48px; }
.map-box {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--border); height: 320px;
  background: linear-gradient(135deg, var(--teal-lt), var(--wheat-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; color: var(--text-muted); font-size: 1rem; text-align:center; padding: 20px;
}

/* ── FOOTER ── */
footer { background:var(--navy); color:rgba(255,255,255,.75); padding:64px 48px 36px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:44px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.1); }
.f-tagline { font-size:.86rem; line-height:1.75; color:rgba(255,255,255,.45); margin-top:12px; max-width:250px; }
.footer-col h5 { font-size:.73rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--wheat); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col a { font-size:.86rem; color:rgba(255,255,255,.45); text-decoration:none; transition:color .2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; padding-top:26px; }
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  nav { padding:10px 16px; }
  nav.scrolled { padding:7px 16px; }
  .nav-links { display:none; }
  .nav-cta { padding:8px 16px; font-size:.75rem; }

  .page-hero { padding: 120px 20px 56px; }

  .about-section { grid-template-columns:1fr; padding:60px 20px; gap:36px; }
  .pillars-grid  { grid-template-columns:1fr 1fr; }
  .narrow-copy { padding: 60px 20px; }

  .products-section { padding:60px 20px; }
  .product-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .innov-wrap { padding:60px 20px; }
  .innov-box  { grid-template-columns:1fr; padding:36px 26px; }

  .stats-band { grid-template-columns:1fr 1fr; }
  .stat-box   { padding:34px 20px; }

  .team-section { padding: 60px 20px; }

  .contact-wrap { grid-template-columns: 1fr; padding: 0 20px 70px; }
  .form-row { grid-template-columns: 1fr; }
  .map-strip { padding: 0 20px; }

  footer { padding:48px 20px 28px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
}
.profile-photo{
    width:140px;
    height:140px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    background:#f5f5f5;
}

.profile-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media(prefers-reduced-motion:reduce){
  * { animation:none !important; transition:none !important; }
}
