:root {
  --teal:       #1fa5a0;
  --teal-dark:  #167d79;
  --teal-pale:  #e4f5f5;
  --blue:       #105a90;
  --blue-dark:  #0c4470;
  --blue-pale:  #e6f0f8;
  --red:        #ed1d24;
  --red-dark:   #c41920;
  --white:      #ffffff;
  --off-white:  #f4f8fb;
  --text-dark:  #0c1f3d;
  --text-mid:   #2c4a6e;
  --text-muted: #5a7a9a;
  --border:     rgba(16,90,144,0.11);
  /* body font is 17.6px (base 16 * 1.1) */
  --fs-body: 1.1rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; font-size: var(--fs-body); color: var(--text-dark); background: #fff; overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--teal-pale); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.pill-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); border: 1.5px solid var(--teal); padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; }
.dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; display: inline-block; flex-shrink: 0; }

.section-title { font-family: 'EB Garamond', serif; font-size: clamp(2.1rem, 3.8vw, 3.2rem); font-weight: 600; line-height: 1.14; color: var(--blue); }
.section-title em { font-style: italic; color: var(--teal); }

.section-body { font-size: var(--fs-body); line-height: 1.76; color: var(--text-mid); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .32s; } .rd4 { transition-delay: .44s; }

/* ══════════════════════════════════
   NAVIGATION — constrained to container
══════════════════════════════════ */
#nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16,90,144,0.09), 0 4px 18px rgba(16,90,144,0.06);
}
#nav {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-mark { width: 38px; height: 38px; border-radius: 9px; background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark svg { width: 21px; height: 21px; }
.site-logo { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 9px; }
.site-logo-full { height: 70px; width: auto; display: block; }
@media (max-width: 480px) { .site-logo-full { height: 36px; } }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; position: relative; letter-spacing: 0.01em; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 9px 22px; border-radius: 8px; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(16,90,144,0.25); transition: all 0.3s !important; }
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,90,144,0.32) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }

.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 40px 24px; z-index: 999; box-shadow: 0 16px 40px rgba(16,90,144,0.1); flex-direction: column; gap: 2px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 0.96rem; font-weight: 500; color: var(--text-mid); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--teal); }

/* ══════════════════════════════════
   HERO — centered, black overlay
══════════════════════════════════ */
#hero {
  min-height: 80vh; padding-top: 72px;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('hero.jpg');
  background-size: cover; background-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0, 0, 0, 0.62);
}
/* subtle vignette on top and bottom */
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease both;
}
.live { width: 7px; height: 7px; background: #5dd6d1; border-radius: 50%; animation: blink 2s ease-in-out infinite; display: inline-block; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 600; line-height: 1.05; color: #fff;
  margin-bottom: 22px;
  animation: fadeUp 0.9s 0.12s ease both;
}
.hero-title .c-teal { color: #5dd6d1; }
.hero-title .c-red  { color: var(--red); }

.hero-divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  margin: 0 auto 22px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-body {
  font-size: 1.15rem; line-height: 1.78; color: rgba(255,255,255,0.7);
  margin-bottom: 44px; max-width: 580px;
  animation: fadeUp 0.9s 0.25s ease both;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.9s 0.38s ease both; }

.btn-teal { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff; font-size: 0.96rem; font-weight: 600; padding: 14px 28px; border-radius: 9px; text-decoration: none; box-shadow: 0 6px 22px rgba(31,165,160,0.4); transition: all 0.3s; letter-spacing: 0.01em; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31,165,160,0.5); }
.btn-teal svg { width: 17px; height: 17px; transition: transform 0.3s; }
.btn-teal:hover svg { transform: translateX(3px); }

.btn-ghost { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.88); font-size: 0.96rem; font-weight: 500; padding: 14px 28px; border-radius: 9px; text-decoration: none; transition: all 0.3s; }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

/* About section stat cards — solid on light bg */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.about-stat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.about-stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.about-stat-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(31,165,160,0.12); transform: translateY(-2px); }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 5px; }
.about-stat-lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 4; animation: fadeIn 1s 1.1s ease both; }
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-bar { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent); animation: scBar 2.2s ease-in-out infinite; }
@keyframes scBar { 0%{opacity:1;transform:scaleY(1);} 100%{opacity:0;transform:scaleY(0.4) translateY(20px);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:none;} }
@keyframes fadeIn  { from{opacity:0;} to{opacity:1;} }

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-strip { background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 14px; padding: 0 36px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.sep { width: 4px; height: 4px; background: rgba(255,255,255,0.38); border-radius: 50%; display: inline-block; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ══════════════════════════════════
   ABOUT — with subtle bg pattern
══════════════════════════════════ */
#about {
  padding: 110px 0;
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q15 0 30 30 Q45 60 60 30' fill='none' stroke='%231fa5a0' stroke-opacity='0.04' stroke-width='1.5'/%3E%3Cpath d='M0 0 Q15 30 30 0 Q45 -30 60 0' fill='none' stroke='%231fa5a0' stroke-opacity='0.04' stroke-width='1.5'/%3E%3Cpath d='M0 60 Q15 90 30 60 Q45 30 60 60' fill='none' stroke='%231fa5a0' stroke-opacity='0.04' stroke-width='1.5'/%3E%3C/svg%3E");
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-visual { position: relative; }
.about-stack { position: relative; height: 460px; }
.about-card-main { position: absolute; top: 0; left: 0; width: 72%; height: 340px; background: linear-gradient(135deg, var(--blue) 0%, #0b3360 100%); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(16,90,144,0.18); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.about-card-main::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 25%, rgba(31,165,160,0.22) 0%, transparent 55%); }
.about-card-main blockquote { position: relative; z-index: 1; font-family: 'EB Garamond', serif; font-size: 1.4rem; font-weight: 500; color: #fff; font-style: italic; line-height: 1.45; }
.about-card-main cite { position: relative; z-index: 1; display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-style: normal; margin-top: 10px; }
.about-card-accent { position: absolute; bottom: 0; right: 0; width: 62%; height: 200px; background: #fff; border-radius: 18px; padding: 24px; box-shadow: 0 8px 32px rgba(16,90,144,0.12); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.accent-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-pale); color: var(--teal-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; margin-bottom: 10px; width: fit-content; }
.accent-chip svg { width: 13px; height: 13px; }
.accent-title { font-family: 'EB Garamond', serif; font-size: 1.65rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.accent-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; }
.year-badge { position: absolute; top: 24px; right: -10px; z-index: 3; width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 24px rgba(237,29,36,0.38); }
.year-badge strong { font-family: 'EB Garamond', serif; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.year-badge small { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

.about-text h2 { margin-bottom: 18px; }
.about-mv { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.mv-card { padding: 22px; border-radius: 13px; border: 1px solid var(--border); background: #fff; transition: all 0.3s; }
.mv-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(31,165,160,0.1); transform: translateY(-2px); }
.mv-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.mv-icon svg { width: 18px; height: 18px; color: var(--teal-dark); }
.mv-card h4 { font-family: 'EB Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.mv-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); }

/* Partners row inside About */
.about-partners-row { margin-top: 56px; }
.about-partners-row h3 { font-family: 'EB Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 20px; }
.about-partners-row h3 span { color: var(--teal); font-style: italic; }
.partners-logo-strip { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pl-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 18px; height: 64px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex: 1; min-width: 100px; max-width: 160px; }
.pl-card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(31,165,160,0.12); transform: translateY(-2px); }
.pl-card img { max-width: 100px; max-height: 36px; object-fit: contain; filter: grayscale(20%) opacity(0.85); transition: filter 0.3s; }
.pl-card:hover img { filter: none; }
.pl-fb { font-family: 'EB Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); text-align: center; line-height: 1.2; white-space: nowrap; }

/* ══════════════════════════════════
   PRODUCTS
══════════════════════════════════ */
#products { padding: 110px 0; background: #fff; }
.products-hd { text-align: center; margin-bottom: 56px; }
.products-hd .section-body { max-width: 520px; margin: 0 auto; text-align: center; }

.tabs-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn { background: none; border: 1.5px solid var(--border); color: var(--text-mid); font-size: 0.86rem; font-weight: 500; font-family: 'DM Sans', sans-serif; padding: 9px 20px; border-radius: 100px; cursor: pointer; transition: all 0.25s; }
.tab-btn:hover { border-color: var(--teal); color: var(--teal); }
.tab-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(16,90,144,0.25); }

.product-panels > div { display: none; }
.product-panels > div.active { display: block; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }

.prod-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 26px; transition: all 0.3s; position: relative; overflow: hidden; }
.prod-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.prod-card.ta::after { background: linear-gradient(90deg, var(--teal), var(--blue)); }
.prod-card.ba::after { background: linear-gradient(90deg, var(--blue), #3a8fd4); }
.prod-card.ra::after { background: linear-gradient(90deg, var(--red), #ff7070); }
.prod-card:hover { border-color: rgba(31,165,160,0.3); box-shadow: 0 12px 36px rgba(16,90,144,0.12); transform: translateY(-4px); }
.prod-card:hover::after { transform: scaleX(1); }
.prod-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ti { background: var(--teal-pale); } .ti svg { color: var(--teal-dark); }
.bi { background: var(--blue-pale); } .bi svg { color: var(--blue); }
.ri { background: #fde8e9; }         .ri svg { color: var(--red-dark); }
.prod-icon svg { width: 24px; height: 24px; }
.prod-cat { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.prod-card.ta .prod-cat { color: var(--teal); }
.prod-card.ba .prod-cat { color: var(--blue); }
.prod-card.ra .prod-cat { color: var(--red-dark); }
.prod-card h3 { font-family: 'EB Garamond', serif; font-size: 1.22rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.prod-card ul { list-style: none; }
.prod-card ul li { font-size: 0.88rem; color: var(--text-muted); padding: 4px 0; border-bottom: 1px solid rgba(16,90,144,0.07); display: flex; align-items: center; gap: 8px; }
.prod-card ul li:last-child { border-bottom: none; }
.prod-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.prod-card.ta ul li::before { background: var(--teal); }
.prod-card.ba ul li::before { background: var(--blue); }
.prod-card.ra ul li::before { background: var(--red); }

/* ══════════════════════════════════
   CORE VALUES — dark bg
══════════════════════════════════ */
#values { padding: 110px 0; background: var(--text-dark); position: relative; overflow: hidden; }
#values::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 55% at 90% 50%, rgba(31,165,160,0.14) 0%, transparent 65%), radial-gradient(ellipse 40% 55% at 5% 55%, rgba(16,90,144,0.2) 0%, transparent 60%); }
.values-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.values-intro .pill-tag { color: #5dd6d1; border-color: rgba(93,214,209,0.38); }
.values-intro h2 { color: #fff; margin-bottom: 18px; }
.values-intro p { color: rgba(255,255,255,0.48); max-width: 300px; font-size: var(--fs-body); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.val-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px; transition: all 0.35s; }
.val-card:hover { background: rgba(31,165,160,0.1); border-color: rgba(31,165,160,0.3); transform: translateY(-4px); }
/* val-num now white */
.val-num { font-family: 'EB Garamond', serif; font-size: 2.2rem; font-weight: 600; color: rgba(255,255,255,1); line-height: 1; margin-bottom: 14px; }
.val-card:hover .val-num { color: rgba(255,255,255,0.32); }
.val-card h3 { font-family: 'EB Garamond', serif; font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: 9px; }
.val-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.46); }

/* ══════════════════════════════════
   PARTNERS — full section (kept but below about in source)
══════════════════════════════════ */
#partners { padding: 90px 0; background: var(--off-white); }
.partners-hd { text-align: center; margin-bottom: 52px; }
.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: center; }
.partner-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 24px 16px; min-height: 96px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; overflow: hidden; }
.partner-card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(31,165,160,0.12); transform: translateY(-3px); }
.partner-card img { max-width: 120px; max-height: 46px; object-fit: contain; filter: grayscale(20%) opacity(0.85); transition: filter 0.3s; }
.partner-card:hover img { filter: none; }
.partner-fb { font-family: 'EB Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); text-align: center; }

/* ══════════════════════════════════
   SDG
══════════════════════════════════ */
#sdg { padding: 100px 0; background: #fff; }
.sdg-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sdg-text h2 { margin-bottom: 18px; }
.sdg-text .section-body { margin-bottom: 14px; }
.sdg-text strong { color: var(--blue); font-weight: 600; }
.sdg-goals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.sdg-goal { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 14px rgba(16,90,144,0.1); transition: all 0.3s; aspect-ratio: 1; }
.sdg-goal:hover { transform: scale(1.07); box-shadow: 0 10px 28px rgba(16,90,144,0.18); position: relative; z-index: 1; }
.sdg-goal img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════
   CONTACT — address left, map right
══════════════════════════════════ */
#contact { padding: 100px 0; background: var(--off-white); }
.contact-hd { text-align: center; margin-bottom: 56px; }
.contact-hd h2 { margin-bottom: 12px; }
.contact-hd p { max-width: 480px; margin: 0 auto; text-align: center; }

/* Two-column: left = contact items, right = map */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: stretch; }

.contact-items { display: flex; flex-direction: column; gap: 14px; }
.ci { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; transition: all 0.3s; }
.ci:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(31,165,160,0.1); }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; color: var(--teal-dark); }
.ci-body label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.ci-body a, .ci-body span { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; text-decoration: none; display: block; }
.ci-body a:hover { color: var(--teal); }
.ci-body .sub { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }

.contact-map-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 48px rgba(16,90,144,0.14); border: 1px solid var(--border); display: flex; flex-direction: column; }
.contact-map-wrap iframe { width: 100%; flex: 1; min-height: 300px; border: none; display: block; }
.map-caption { background: #fff; padding: 13px 18px; border-top: 1px solid var(--border); }
.map-caption p { font-size: 0.82rem; color: var(--text-muted); }
.map-caption strong { color: var(--text-dark); }

/* ══════════════════════════════════
   FOOTER — teal to very light teal gradient
══════════════════════════════════ */
#footer {
  padding: 64px 0 0;
  /*background: linear-gradient(to top, #1fa5a0 0%, #4cc0ba 35%, #8ddbd7 65%, #d0f0ee 100%);*/
  background:var(--teal);
  position: relative;
}
#footer::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q15 0 30 30 Q45 60 60 30' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.footer-top { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.footer-about p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.82); margin: 14px 0 22px; max-width: 270px; }
/* Logo mark — white on teal bg, clearly visible */
.footer-logo-mark { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.5); }
.footer-logo-text strong { display: block; font-family: 'EB Garamond', serif; font-size: 1.08rem; font-weight: 700; color: #fff; }
.footer-logo-text span { font-size: 0.67rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 600; }

.footer-socials { display: flex; gap: 9px; }
.fsoc { width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.3s; }
.fsoc:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.18); }
.fsoc svg { width: 15px; height: 15px; }

.footer-col { position: relative; z-index: 1; }
.footer-col h4, .footer-about h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom { position: relative; z-index: 1; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 1px solid rgba(0,0,0,0.08); }
/* Bottom text on very light teal — use dark color */
.footer-bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 1); }

/* ══════════════════════════════════
   BACK TO TOP
══════════════════════════════════ */
#backTop { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 42px; height: 42px; border-radius: 11px; background: var(--blue); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(16,90,144,0.35); transition: all 0.3s; opacity: 0; pointer-events: none; }
#backTop.vis { opacity: 1; pointer-events: all; }
#backTop:hover { transform: translateY(-3px); background: var(--blue-dark); }
#backTop svg { width: 17px; height: 17px; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .values-layout, .sdg-layout { grid-template-columns: 1fr; gap: 48px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  #nav { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { padding: 14px 22px 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .about-stack { height: 320px; }
  .about-card-main { width: 82%; height: 250px; }
  .about-card-accent { width: 72%; height: 185px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-mv { grid-template-columns: 1fr; }
  .sdg-goals { grid-template-columns: repeat(4, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-radius: 10px !important; }
  .partners-logo-strip { gap: 8px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .sdg-goals { grid-template-columns: repeat(3, 1fr); }
  .partners-logo-strip .pl-card { max-width: calc(50% - 4px); }
}
