/* =====================================================
   TREMAC GLOBAL MANUFACTURING - STYLESHEET
   style.css
   ===================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Outfit',sans-serif;
  background:#fff;
  color:#1a2a1a;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --green:#4a7c49; --green-dark:#2d5133; --green-deep:#1e3822;
  --green-mid:#5a9458; --green-light:#7db87b;
  --green-pale:#eef5ee; --green-pale2:#dceadb;
  --aqua:#5bbcb8; --aqua-light:#8fd4d1; --aqua-pale:#e0f4f3;
  --cream:#fafdf9; --off-white:#f5f8f4;
  --text-primary:#111c11; --text-secondary:#3d5c3b; --text-muted:#7a9878;
  --border:rgba(74,124,73,0.14); --border-strong:rgba(74,124,73,0.28);
  --shadow-sm:0 2px 12px rgba(30,56,34,0.07);
  --shadow-md:0 8px 32px rgba(30,56,34,0.10);
  --shadow-lg:0 20px 60px rgba(30,56,34,0.13);
  --radius-sm:8px; --radius-md:14px; --radius-lg:22px;
  --radius-xl:32px; --radius-full:9999px;
}

/* ---------- UTILITY ---------- */
.container { max-width:1180px; margin:0 auto; padding:0 2rem; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* =====================================================
   NAVIGATION
   ===================================================== */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:0 2.5rem; height:68px;
  display:flex; align-items:center; justify-content:space-between;
  transition:background .4s, box-shadow .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
#navbar.scrolled {
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom-color:var(--border);
  box-shadow:var(--shadow-sm);
}
.nav-logo { display:flex; align-items:center; gap:10px; cursor:pointer; text-decoration:none; }
.logo-pill {
  background:var(--green); color:#fff;
  font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700;
  padding:5px 20px; border-radius:var(--radius-full);
  letter-spacing:.5px; transition:background .25s; display:inline-block;
}
.nav-logo:hover .logo-pill { background:var(--green-dark); }
.nav-links { display:flex; align-items:center; gap:0; list-style:none; }
.nav-links li a {
  display:block; padding:8px 16px;
  font-size:14px; font-weight:500;
  color:rgba(255,255,255,0.85); text-decoration:none; cursor:pointer;
  border-radius:var(--radius-full);
  transition:color .2s, background .2s; white-space:nowrap;
}
#navbar.scrolled .nav-links li a { color:var(--text-secondary); }
.nav-links li a:hover,
.nav-links li a.active { color:var(--green) !important; background:var(--green-pale); }
.nav-cta-btn {
  background:var(--green); color:#fff; border:none; cursor:pointer;
  font-family:'Outfit',sans-serif; font-weight:600; font-size:13.5px;
  padding:9px 22px; border-radius:var(--radius-full);
  transition:all .25s; white-space:nowrap;
}
.nav-cta-btn:hover { background:var(--green-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(74,124,73,0.35); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition:background .3s; }
#navbar.scrolled .nav-hamburger span { background:var(--text-primary); }

.mobile-nav {
  display:none; position:fixed; inset:0; z-index:950;
  background:rgba(30,56,34,0.97);
  flex-direction:column; align-items:center; justify-content:center;
  padding:4rem 2rem;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:1.8rem; font-family:'Cormorant Garamond',serif; font-weight:600;
  color:rgba(255,255,255,0.8); text-decoration:none; cursor:pointer;
  padding:.8rem 0; transition:color .2s;
  border-bottom:1px solid rgba(255,255,255,0.08);
  width:100%; text-align:center;
}
.mobile-nav a:hover { color:var(--aqua-light); }
.mobile-close {
  position:absolute; top:1.5rem; right:1.5rem;
  background:rgba(255,255,255,0.1); border:none; cursor:pointer;
  color:#fff; font-size:20px; width:44px; height:44px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.mobile-close:hover { background:rgba(255,255,255,0.2); }

/* =====================================================
   PAGE SYSTEM
   ===================================================== */
.page { display:none; }
.page.active { display:block; }

/* =====================================================
   SECTION SHARED
   ===================================================== */
section { padding:100px 0; }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--green);
  background:var(--green-pale); padding:5px 14px;
  border-radius:var(--radius-full); margin-bottom:1.2rem;
}
.section-label::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--green); }
.section-h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.2rem); font-weight:700;
  line-height:1.15; color:var(--text-primary);
  margin-bottom:1rem; letter-spacing:-.3px;
}
.section-intro { font-size:16px; line-height:1.8; color:var(--text-muted); max-width:560px; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.reveal { opacity:0; transform:translateY(36px); transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-left { opacity:0; transform:translateX(-36px); transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-right { opacity:0; transform:translateX(36px); transition:opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:translate(0); }
.delay-1 { transition-delay:.10s; }
.delay-2 { transition-delay:.20s; }
.delay-3 { transition-delay:.30s; }
.delay-4 { transition-delay:.40s; }
.delay-5 { transition-delay:.50s; }

/* =====================================================
   HERO
   ===================================================== */
.hero { min-height:100vh; position:relative; display:flex; align-items:center; overflow:hidden; background:var(--green-deep); }
.hero-canvas {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(91,188,184,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(74,124,73,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(30,56,34,0.5) 30%, transparent 100%);
}
.blob { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(91,188,184,0.18),transparent 70%); animation:blobFloat 12s ease-in-out infinite; pointer-events:none; }
.blob:nth-child(2) { width:500px; height:500px; top:-100px; right:-50px; animation-delay:0s; }
.blob:nth-child(3) { width:350px; height:350px; bottom:-80px; left:-60px; animation-delay:-4s; background:radial-gradient(circle,rgba(74,124,73,0.2),transparent 70%); }
.blob:nth-child(4) { width:280px; height:280px; top:50%; right:25%; animation-delay:-8s; }
@keyframes blobFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  33%     { transform:translate(30px,-20px) scale(1.05); }
  66%     { transform:translate(-20px,15px) scale(0.95); }
}
.water-ring { position:absolute; border-radius:50%; border:1px solid rgba(91,188,184,0.15); animation:ringPulse 6s ease-out infinite; pointer-events:none; }
@keyframes ringPulse { 0%{transform:scale(0.8);opacity:.6;} 100%{transform:scale(1.8);opacity:0;} }

.hero-grid { position:relative; z-index:5; display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; padding:120px 0 80px; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(91,188,184,0.35); background:rgba(91,188,184,0.08);
  color:var(--aqua-light); font-size:11.5px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; padding:6px 14px;
  border-radius:var(--radius-full); margin-bottom:1.6rem;
  backdrop-filter:blur(10px);
}
.hero-eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--aqua-light); }
.hero-h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.8rem,5.5vw,4.4rem); font-weight:700; line-height:1.08; color:#fff; margin-bottom:1.6rem; letter-spacing:-.5px; }
.hero-h1 em { font-style:italic; color:var(--aqua-light); }
.hero-body { font-size:16px; line-height:1.8; color:rgba(255,255,255,0.65); max-width:440px; margin-bottom:2.4rem; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.btn-hero-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; color:var(--green-dark);
  font-family:'Outfit',sans-serif; font-weight:700; font-size:14px;
  padding:13px 28px; border-radius:var(--radius-full); border:none; cursor:pointer;
  transition:all .3s; box-shadow:0 8px 30px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover { background:var(--aqua-light); color:var(--green-deep); transform:translateY(-2px); box-shadow:0 14px 40px rgba(0,0,0,0.25); }
.btn-hero-primary svg { transition:transform .25s; }
.btn-hero-primary:hover svg { transform:translateX(4px); }
.btn-hero-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:rgba(255,255,255,0.8);
  font-family:'Outfit',sans-serif; font-weight:500; font-size:14px;
  padding:13px 24px; border-radius:var(--radius-full);
  border:1px solid rgba(255,255,255,0.22); cursor:pointer; transition:all .25s;
}
.btn-hero-ghost:hover { border-color:rgba(255,255,255,0.5); color:#fff; background:rgba(255,255,255,0.06); }
.hero-metrics { display:flex; gap:2.5rem; margin-top:3rem; padding-top:2.5rem; border-top:1px solid rgba(255,255,255,0.1); }
.metric .val { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:700; color:var(--aqua-light); line-height:1; }
.metric .lbl { font-size:12px; color:rgba(255,255,255,0.45); margin-top:4px; letter-spacing:.5px; }

.hero-visual-side { display:flex; justify-content:flex-end; align-items:center; position:relative; }
.hero-orb {
  width:420px; height:420px; max-width:90%; border-radius:50%;
  background:radial-gradient(circle at 40% 35%,rgba(91,188,184,0.22) 0%,rgba(74,124,73,0.18) 40%,rgba(30,56,34,0.3) 70%,transparent 100%);
  border:1px solid rgba(91,188,184,0.18);
  display:flex; align-items:center; justify-content:center;
  position:relative; animation:orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.03);} }
.hero-orb-inner { font-size:110px; line-height:1; animation:heroFloat 6s ease-in-out infinite; filter:drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
@keyframes heroFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px);} }
.hero-badge {
  position:absolute; bottom:30px; left:-20px;
  background:rgba(255,255,255,0.1); backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.15); border-radius:var(--radius-md);
  padding:14px 18px; display:flex; align-items:center; gap:10px;
  animation:badgeFloat 5s ease-in-out infinite;
}
@keyframes badgeFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.hero-badge-icon { font-size:24px; }
.hero-badge-text p { font-size:12px; color:rgba(255,255,255,0.55); }
.hero-badge-text strong { font-size:14px; color:#fff; font-weight:600; }
.scroll-indicator { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); z-index:5; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scroll-dot { width:24px; height:40px; border:1.5px solid rgba(255,255,255,0.3); border-radius:12px; display:flex; justify-content:center; padding-top:7px; }
.scroll-dot::before { content:''; width:4px; height:8px; background:rgba(255,255,255,0.5); border-radius:2px; animation:scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%{opacity:1;transform:translateY(0);} 80%{opacity:0;transform:translateY(10px);} 100%{opacity:0;} }

/* =====================================================
   COMPANY PROFILE
   ===================================================== */
.profile-section { background:var(--cream); }
.profile-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.profile-text p { font-size:16px; line-height:1.9; color:var(--text-secondary); margin-bottom:1.4rem; }
.profile-text p:first-of-type { color:var(--text-primary); font-size:17px; }
.read-more-link { display:inline-flex; align-items:center; gap:6px; color:var(--green); font-weight:600; font-size:15px; cursor:pointer; border:none; background:none; transition:gap .25s,color .2s; padding:0; margin-top:.5rem; }
.read-more-link:hover { color:var(--green-dark); gap:12px; }
.profile-card-visual {
  background:linear-gradient(145deg,var(--green) 0%,var(--green-dark) 60%,var(--green-deep) 100%);
  border-radius:var(--radius-xl); padding:2.5rem; color:#fff;
  position:relative; overflow:hidden; box-shadow:var(--shadow-lg);
}
.profile-card-visual::before { content:''; position:absolute; top:-60px; right:-60px; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,0.06); }
.profile-card-visual::after { content:''; position:absolute; bottom:-40px; left:-40px; width:160px; height:160px; border-radius:50%; background:rgba(91,188,184,0.12); }
.profile-card-visual h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; margin-bottom:1.8rem; opacity:.95; position:relative; z-index:1; }
.profile-stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; position:relative; z-index:1; }
.ps-val { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:700; color:var(--aqua-light); line-height:1; }
.ps-label { font-size:12px; color:rgba(255,255,255,0.55); margin-top:4px; }
.profile-divider { border:none; border-top:1px solid rgba(255,255,255,0.12); margin:1.8rem 0; position:relative; z-index:1; }
.profile-tagline { font-size:13px; color:rgba(255,255,255,0.5); position:relative; z-index:1; line-height:1.6; }

/* =====================================================
   PRODUCTS CAROUSEL
   ===================================================== */
.products-section { background:#fff; overflow:hidden; }
.products-header { text-align:center; max-width:600px; margin:0 auto; }
.carousel-container { margin-top:3rem; position:relative; }
.carousel-track-wrap {
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%);
}
.carousel-track { display:flex; gap:1.4rem; width:max-content; animation:slideLeft 30s linear infinite; }
.carousel-track-wrap:hover .carousel-track { animation-play-state:paused; }
@keyframes slideLeft { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

.product-card {
  min-width:230px;
 background:#fff; border:1.5px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden; cursor:pointer; flex-shrink:0;
  transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .3s;
  position:relative;
}
.product-card:hover { transform:translateY(-10px) scale(1.02); box-shadow:0 22px 55px rgba(74,124,73,0.16); border-color:var(--green); }
.product-card-img { height:156px; background:linear-gradient(135deg,var(--green-pale) 0%,var(--aqua-pale) 100%); display:flex; align-items:center; justify-content:center; font-size:64px; transition:transform .4s; user-select:none; overflow: hidden;}
.product-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product-card:hover .product-card-img { transform:scale(1.05); }
.product-card-body { padding:1.2rem 1.3rem 1.4rem; }
.product-card-name { font-family:'Cormorant Garamond',serif; font-size:17px; font-weight:700; color:var(--text-primary); margin-bottom:5px; }
.product-card-desc { font-size:13px; color:var(--text-muted); line-height:1.5; }
.product-card-arrow { position:absolute; bottom:1.2rem; right:1.2rem; width:30px; height:30px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0.7); transition:all .3s; }
.product-card:hover .product-card-arrow { opacity:1; transform:scale(1); }
.product-card-arrow svg { width:14px; height:14px; color:var(--green); }

/* =====================================================
   MODAL
   ===================================================== */
.modal-overlay {
  position:fixed; inset:0; z-index:9999;
  background:rgba(20,40,22,0.75);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  display:flex; align-items:center; justify-content:center; padding:1.5rem;
  opacity:0; pointer-events:none; transition:opacity .35s;
}
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal-box {
  background:#fff; border-radius:var(--radius-xl);
  max-width:500px; width:100%; overflow:hidden;
  position:relative; max-height:90vh; overflow-y:auto;
  transform:scale(0.88) translateY(20px);
  transition:transform .4s cubic-bezier(.22,1,.36,1);
  box-shadow:0 40px 100px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-box { transform:scale(1) translateY(0); }
.modal-img { height:210px; background:linear-gradient(135deg,var(--green-pale),var(--aqua-pale)); display:flex; align-items:center; justify-content:center; font-size:88px; user-select:none; }
.modal-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.modal-close-btn { position:absolute; top:1rem; right:1rem; width:36px; height:36px; border-radius:50%; background:rgba(0,0,0,0.1); border:none; cursor:pointer; font-size:18px; display:flex; align-items:center; justify-content:center; transition:background .2s; color:var(--text-primary); z-index:1; }
.modal-close-btn:hover { background:rgba(0,0,0,0.18); }
.modal-content-body { padding:1.8rem 2rem 2rem; }
.modal-product-name { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:700; color:var(--text-primary); margin-bottom:.8rem; }
.modal-product-desc { font-size:15px; line-height:1.8; color:var(--text-secondary); margin-bottom:1.6rem; }
.btn-view-store { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; background:var(--green); color:#fff; font-family:'Outfit',sans-serif; font-weight:600; font-size:14.5px; border:none; border-radius:var(--radius-md); cursor:pointer; transition:all .25s; }
.btn-view-store:hover { background:var(--green-dark); transform:translateY(-1px); box-shadow:0 8px 24px rgba(74,124,73,0.32); }

/* =====================================================
   TEAM
   ===================================================== */
.team-section { background:var(--off-white); }
.team-header { text-align:center; }
.team-center { display:flex; justify-content:center; margin-top:3.5rem; }
.team-card { background:#fff; border-radius:var(--radius-xl); padding:3rem 3rem 2.5rem; text-align:center; max-width:500px; width:100%; border:1.5px solid var(--border); box-shadow:var(--shadow-md); transition:transform .35s,box-shadow .35s; }
.team-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.team-avatar-wrap { position:relative; display:inline-block; margin-bottom:1.5rem; }
.team-avatar { width:110px; height:110px; border-radius:50%; background:linear-gradient(145deg,var(--green) 0%,var(--green-dark) 100%); display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:2.8rem; color:#fff; font-weight:700; border:4px solid var(--green-pale); margin:0 auto; }
.team-status-dot { position:absolute; bottom:6px; right:6px; width:18px; height:18px; border-radius:50%; background:#4ade80; border:2.5px solid #fff; }
.team-name { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:700; color:var(--text-primary); margin-bottom:6px; }
.team-role-badge { display:inline-block; background:var(--green-pale); color:var(--green); font-size:12.5px; font-weight:600; padding:4px 16px; border-radius:var(--radius-full); margin-bottom:1.3rem; }
.team-bio { font-size:14.5px; line-height:1.85; color:var(--text-muted); text-align:left; }
.team-companies { display:flex; gap:.6rem; flex-wrap:wrap; justify-content:center; margin-top:1.5rem; }
.company-tag { font-size:11.5px; padding:4px 11px; background:var(--green-pale2); color:var(--text-secondary); border-radius:var(--radius-full); font-weight:500; }

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-section { background:#fff; }
.contact-layout { display:grid; grid-template-columns:1fr 1.3fr; gap:5rem; align-items:start; margin-top:3.5rem; }
.contact-heading { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; color:var(--text-primary); margin-bottom:2rem; line-height:1.3; }
.contact-info-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:1.5rem; padding:1.2rem; border-radius:var(--radius-md); border:1px solid var(--border); background:var(--cream); transition:border-color .2s,box-shadow .2s; }
.contact-info-item:hover { border-color:var(--green-light); box-shadow:var(--shadow-sm); }
.c-icon { width:42px; height:42px; border-radius:var(--radius-sm); background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.c-info-text p:first-child { font-weight:600; font-size:14px; color:var(--text-primary); margin-bottom:2px; }
.c-info-text p:last-child { font-size:13.5px; color:var(--text-muted); }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-field { margin-bottom:1.1rem; }
.form-field label { display:block; font-size:13px; font-weight:600; color:var(--text-secondary); margin-bottom:7px; }
.form-field input,
.form-field textarea {
  width:100%; padding:12px 16px;
  border:1.5px solid var(--border); border-radius:var(--radius-md);
  font-family:'Outfit',sans-serif; font-size:14.5px;
  color:var(--text-primary); background:var(--cream);
  outline:none; transition:border-color .25s,box-shadow .25s,background .2s;
}
.form-field input:focus,
.form-field textarea:focus { border-color:var(--green); background:#fff; box-shadow:0 0 0 3.5px rgba(74,124,73,0.12); }
.form-field input::placeholder,
.form-field textarea::placeholder { color:#bbc; }
.form-field textarea { height:128px; resize:vertical; }
.form-error-msg { font-size:12px; color:#e05252; margin-top:4px; display:none; }
.form-field.has-error input, .form-field.has-error textarea { border-color:#e05252; }
.form-field.has-error .form-error-msg { display:block; }
.btn-submit { width:100%; padding:14px; background:var(--green); color:#fff; font-family:'Outfit',sans-serif; font-weight:700; font-size:15px; border:none; border-radius:var(--radius-md); cursor:pointer; transition:all .3s; display:flex; align-items:center; justify-content:center; gap:8px; margin-top:.5rem; }
.btn-submit:hover:not(:disabled) { background:var(--green-dark); transform:translateY(-2px); box-shadow:0 10px 28px rgba(74,124,73,0.3); }
.btn-submit:disabled { opacity:.65; cursor:not-allowed; transform:none; }
.form-success-banner { display:none; margin-top:1rem; padding:1rem 1.3rem; background:var(--green-pale); border:1px solid var(--green-pale2); border-radius:var(--radius-md); color:var(--green-dark); font-size:14px; font-weight:600; text-align:center; }
.form-success-banner.show { display:block; }
.form-error-banner { display:none; margin-top:1rem; padding:1rem 1.3rem; background:#fef2f2; border:1px solid #fecaca; border-radius:var(--radius-md); color:#b91c1c; font-size:14px; font-weight:600; text-align:center; }
.form-error-banner.show { display:block; }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background:var(--green-deep); color:#fff; padding:70px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:3.5rem; padding-bottom:3rem; }
.footer-brand p { font-size:14px; line-height:1.8; color:rgba(255,255,255,0.5); max-width:280px; margin-top:1rem; }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--aqua-light); margin-bottom:1.2rem; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,0.55); text-decoration:none; margin-bottom:.7rem; cursor:pointer; transition:color .2s; width:fit-content; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding:1.5rem 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,0.35); }
.footer-bottom span { font-size:13px; color:rgba(255,255,255,0.25); }

/* =====================================================
   CONTENT PAGE HEADER
   ===================================================== */
.page-header { padding-top:68px; background:linear-gradient(135deg,var(--green-deep) 0%,var(--green-dark) 60%,var(--green) 100%); padding-bottom:60px; text-align:center; position:relative; overflow:hidden; }
.page-header::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 80% at 50% 50%,rgba(91,188,184,0.12) 0%,transparent 70%); }
.page-header h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,5vw,3.5rem); font-weight:700; color:#fff; position:relative; z-index:1; padding-top:60px; letter-spacing:-.3px; }
.page-header p { font-size:16px; color:rgba(255,255,255,0.65); max-width:480px; margin:1rem auto 0; position:relative; z-index:1; line-height:1.7; }

/* =====================================================
   PAGE BODY
   ===================================================== */
.page-body { max-width:860px; margin:0 auto; padding:4rem 2rem 5rem; }
.page-body h2 { font-family:'Cormorant Garamond',serif; font-size:1.7rem; font-weight:700; color:var(--green-dark); margin:2.5rem 0 .8rem; padding-bottom:.5rem; border-bottom:2px solid var(--green-pale2); }
.page-body h2:first-child { margin-top:0; }
.page-body h3 { font-size:1.1rem; font-weight:600; color:var(--text-primary); margin:1.6rem 0 .4rem; }
.page-body p { font-size:15.5px; line-height:1.9; color:var(--text-secondary); margin-bottom:1rem; }
.page-body ul { margin:.5rem 0 1rem 0; padding-left:0; list-style:none; }
.page-body li { font-size:15.5px; line-height:1.8; color:var(--text-secondary); padding:3px 0 3px 1.4rem; position:relative; }
.page-body li::before { content:''; position:absolute; left:0; top:12px; width:6px; height:6px; border-radius:50%; background:var(--green); }
.highlight-box { background:var(--green-pale); border-left:4px solid var(--green); border-radius:0 var(--radius-md) var(--radius-md) 0; padding:1.4rem 1.6rem; margin:1.8rem 0; }
.highlight-box p { margin:0; font-size:15px; color:var(--green-dark); font-weight:500; }
.mission-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin:1.5rem 0; }
.mission-card { background:var(--off-white); border-radius:var(--radius-lg); padding:1.6rem; border:1.5px solid var(--border); }
.mission-card .card-icon { font-size:28px; margin-bottom:.7rem; }
.mission-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:var(--text-primary); margin-bottom:.5rem; }
.mission-card p { font-size:14px; color:var(--text-muted); margin:0; line-height:1.7; }
.leader-card { background:#fff; border-radius:var(--radius-xl); border:1.5px solid var(--border); padding:2rem; display:flex; gap:2rem; align-items:flex-start; box-shadow:var(--shadow-sm); margin:1.5rem 0; }
.leader-avatar { width:80px; height:80px; border-radius:50%; flex-shrink:0; background:linear-gradient(145deg,var(--green),var(--green-dark)); display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:2rem; color:#fff; font-weight:700; }
.leader-info h4 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:700; color:var(--text-primary); }
.leader-info .role { font-size:13px; color:var(--green); font-weight:600; margin:3px 0 .7rem; }
.leader-info p { font-size:14px; color:var(--text-muted); line-height:1.8; margin:0; }

/* =====================================================
   STORES PAGE
   ===================================================== */
.stores-wrapper { padding:4rem 0 5rem; }
.store-intro { text-align:center; margin-bottom:3rem; }
.store-intro p { font-size:16.5px; color:var(--text-muted); line-height:1.8; max-width:600px; margin:.8rem auto 0; }
.store-iframe-container { background:var(--off-white); border-radius:var(--radius-xl); border:2px solid var(--border); overflow:hidden; min-height:700px; position:relative; }
.store-loading { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; background:var(--off-white); z-index:2; transition:opacity .5s; }
.store-loading.hidden { opacity:0; pointer-events:none; }
.loading-spinner { width:40px; height:40px; border-radius:50%; border:3px solid var(--green-pale2); border-top-color:var(--green); animation:spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg);} }
.store-loading p { font-size:14px; color:var(--text-muted); }
.store-iframe-container iframe { width:100%; min-height:700px; border:none; display:block; position:relative; z-index:1; }
.store-note { text-align:center; margin-top:1.2rem; font-size:13px; color:var(--text-muted); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:3.5rem; }
.contact-page-cards { display:flex; flex-direction:column; gap:1rem; }
.cp-card { background:var(--off-white); border-radius:var(--radius-lg); padding:1.4rem 1.6rem; border:1.5px solid var(--border); display:flex; align-items:center; gap:1.2rem; transition:all .25s; }
.cp-card:hover { border-color:var(--green); box-shadow:var(--shadow-sm); }
.cp-card-icon { font-size:26px; }
.cp-card h4 { font-size:12px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:3px; }
.cp-card p { font-size:15px; font-weight:600; color:var(--text-primary); }

/* =====================================================
   PRIVACY PAGE
   ===================================================== */
.privacy-date { color:var(--text-muted); font-size:14px; margin-bottom:2rem; }
.privacy-toc { background:var(--green-pale); border-radius:var(--radius-lg); padding:1.5rem 1.8rem; margin-bottom:2.5rem; }
.privacy-toc h4 { font-size:13px; font-weight:700; color:var(--green-dark); margin-bottom:.8rem; text-transform:uppercase; letter-spacing:1px; }
.privacy-toc ul { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:.5rem; }
.privacy-toc li { padding:0; }
.privacy-toc li::before { display:none; }
.privacy-toc li a { font-size:13px; color:var(--green); text-decoration:none; background:#fff; padding:4px 12px; border-radius:var(--radius-full); border:1px solid var(--green-pale2); transition:all .2s; display:block; }
.privacy-toc li a:hover { background:var(--green); color:#fff; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width:900px) {
  .hero-grid { grid-template-columns:1fr; gap:2rem; }
  .hero-visual-side { display:none; }
  .profile-layout { grid-template-columns:1fr; gap:2.5rem; }
  .contact-layout { grid-template-columns:1fr; gap:2.5rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .contact-page-grid { grid-template-columns:1fr; }
  .mission-grid { grid-template-columns:1fr; }
}
@media (max-width:680px) {
  section { padding:64px 0; }
  .nav-links, .nav-cta-btn { display:none; }
  .nav-hamburger { display:flex; }
  .hero-metrics { gap:1.5rem; flex-wrap:wrap; }
  .hero-h1 { font-size:2.4rem; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .leader-card { flex-direction:column; }
  .profile-stats-grid { grid-template-columns:1fr 1fr; }
  .team-card { padding:2rem 1.5rem; }
  .store-iframe-container { min-height:500px; }
  .store-iframe-container iframe { min-height:500px; }
}
@media (max-width:400px) {
  .hero-h1 { font-size:2rem; }
  .metric .val { font-size:1.8rem; }
}
