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

:root{
  --cream:#f7f5f0;
  --white:#ffffff;
  --ink:#1a1a1a;
  --mid:#5a5a5a;
  --light:#9a9a9a;
  --accent:#2c5f4a;
  --accent-light:#e8f0ec;
  --border:#e2ddd7;
  --gold:#b8976a;
  --red:#e63329;
}

html{ scroll-behavior:smooth; }

body{
  font-family:'DM Sans', sans-serif;
  background:var(--cream);
  color:var(--ink);
  min-height:100vh;
  overflow-x:hidden;
}

/* ---------- TOP BAR ---------- */
.topbar{
  background:var(--accent);
  color:#fff;
  text-align:center;
  padding:10px 20px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:500;
}

/* ---------- NAV ---------- */
nav{
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:15px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  z-index:100;
}

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

.logo-icon{
  width:50px;
  height:35px;
  object-fit:contain;
}

.logo-wordmark{
  font-family:'Cormorant Garamond', serif;
  font-size:30px;
  font-weight:600;
  letter-spacing:1px;
}

.logo-red{ color:#FF0000; margin-right:2px; }
.logo-green{ color:#2c5f4a; }

.nav-toggle{
  display:none;
  background:none;
  border:1.5px solid var(--accent);
  color:var(--accent);
  font-size:20px;
  padding:6px 10px;
  cursor:pointer;
  border-radius:3px;
}

.nav-links{
  display:flex;
  gap:36px;
  list-style:none;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:var(--mid);
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:500;
  transition:color .2s, background .2s, transform .2s;
}

.nav-links a:hover{ color:var(--accent); }

.nav-cta{
  border:1.5px solid var(--accent);
  padding:10px 14px;
  border-radius:2px;
  color:var(--accent) !important;
}

.nav-cta:hover{
  background:var(--accent);
  color:#fff !important;
  transform:translateY(-1px);
}

/* ---------- HERO ---------- */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:88vh;
  max-width:1200px;
  margin:0 auto;
  padding:80px 60px;
  gap:80px;
  align-items:center;
}

.hero-text{ animation:fadeUp .9s ease both; }

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:500;
  margin-bottom:10px;
}

.hero-eyebrow::before{
  content:'';
  width:32px;
  height:1px;
  background:var(--accent);
}

.hero-name{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(48px, 4vw, 80px);
  font-weight:300;
  line-height:1.05;
  color:var(--ink);
  margin-bottom:12px;
  letter-spacing:-1px;
}

.hero-name strong{
  font-weight:600;
  color:var(--accent);
}

.hero-subtitle{
  font-size:16px;
  color:var(--gold);
  font-weight:500;
  letter-spacing:1px;
  margin-bottom:28px;
}

.hero-desc{
  font-size:15px;
  line-height:1.85;
  color:var(--mid);
  max-width:480px;
  margin-bottom:40px;
}

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

.hero-cta{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:14px 36px;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:500;
  transition:background .2s, transform .2s;
  border-radius:2px;
}

.hero-cta:hover{
  background:#1e4434;
  transform:translateY(-2px);
}

.hero-cta-outline{
  display:inline-block;
  background:transparent;
  color:var(--accent);
  border:1.5px solid var(--accent);
  padding:13px 36px;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:500;
  transition:all .2s;
  border-radius:2px;
}

.hero-cta-outline:hover{
  background:var(--accent);
  color:#fff;
  transform:translateY(-2px);
}

/* ---------- HERO VISUAL ---------- */
.hero-visual{ animation:fadeUp .9s .2s ease both; }

.brand-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:4px;
  padding:48px 40px;
  position:relative;
  box-shadow:0 8px 40px rgba(0,0,0,.06);
}

.brand-card::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg, var(--accent), var(--gold));
  border-radius:4px 4px 0 0;
}

.brand-logo-large{
  font-family:'Cormorant Garamond', serif;
  font-size:64px;
  font-weight:600;
  color:#FF0000;
  line-height:1;
  margin-bottom:8px;
}

.brand-logo-large span{ color:#2c5f4a; margin-left:6px; }

.brand-tagline{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--light);
  margin-bottom:36px;
  font-weight:500;
}

.brand-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:28px;
}

.tag{
  background:var(--accent-light);
  color:var(--accent);
  font-size:11px;
  padding:6px 14px;
  border-radius:20px;
  font-weight:500;
  letter-spacing:.5px;
}

.brand-detail{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:13px;
  color:var(--mid);
}

.brand-detail:last-child{ border-bottom:none; }

.brand-detail .icon{
  width:32px;
  height:32px;
  background:var(--accent-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:14px;
}

/* ---------- SECTIONS ---------- */
section{
  max-width:1200px;
  margin:0 auto;
  padding:80px 60px;
}

.section-header{ margin-bottom:48px; }

.section-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
  margin-bottom:12px;
}

.section-label::before{
  content:'';
  width:24px;
  height:1px;
  background:var(--gold);
}

.section-title{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(32px, 4vw, 48px);
  font-weight:300;
  color:var(--ink);
  line-height:1.15;
}

.section-title strong{ font-weight:600; }

.section-center{ text-align:center; }
.section-center-label{ justify-content:center; }

/* ---------- ABOUT ---------- */
.about-bg{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

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

.about-text p{
  font-size:15px;
  line-height:1.9;
  color:var(--mid);
  margin-bottom:20px;
}

.about-text p strong{
  color:var(--ink);
  font-weight:500;
}

.highlight-box{
  background:var(--accent-light);
  border-left:3px solid var(--accent);
  padding:24px 28px;
  border-radius:0 4px 4px 0;
  margin-top:28px;
}

.highlight-box p{
  font-size:13px;
  line-height:1.8;
  color:var(--accent);
  font-style:italic;
  margin:0 !important;
}

/* Stats */
.stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.stat-card{
  background:var(--cream);
  border:1px solid var(--border);
  padding:32px 28px;
  border-radius:4px;
  text-align:center;
  transition:transform .2s, box-shadow .2s;
}

.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.07);
}

.stat-num{
  font-family:'Cormorant Garamond', serif;
  font-size:48px;
  font-weight:600;
  color:var(--accent);
  line-height:1;
  margin-bottom:8px;
}

.stat-label{
  font-size:12px;
  color:var(--mid);
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:500;
}

/* ---------- PRODUCTS GRID ---------- */
.products-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

/* Standard product card */
.product-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:4px;
  overflow:hidden;
  transition:transform .25s, box-shadow .25s;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  position:relative;
}

.product-card::after{
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--accent), var(--gold));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
}

.product-card:hover::after{ transform:scaleX(1); }

.product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 48px rgba(0,0,0,.1);
}

/* Product image area */
.product-img-wrap{
  width:100%;
  height:200px;
  overflow:hidden;
  background:var(--accent-light);
  position:relative;
  flex-shrink:0;
}

.product-img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
  display:block;
}

.product-card:hover .product-img{
  transform:scale(1.05);
}

/* Fallback emoji shown when image fails */
.product-img-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:52px;
  background:var(--accent-light);
}

/* Product body */
.product-body{
  padding:24px 24px 28px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.product-category{
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:8px;
}

.product-name{
  font-family:'Cormorant Garamond', serif;
  font-size:21px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:10px;
  line-height:1.2;
}

.product-desc{
  font-size:13.5px;
  line-height:1.75;
  color:var(--mid);
  flex:1;
  margin-bottom:20px;
}

.product-link{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:500;
  color:var(--accent);
  text-decoration:none;
  transition:gap .2s;
  gap:4px;
}

.product-card:hover .product-link{
  gap:8px;
}

/* ---------- VIEW ALL CARD ---------- */
.product-card--viewall{
  background:var(--accent);
  border-color:var(--accent);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  min-height:320px;
}

.product-card--viewall::after{
  background:linear-gradient(90deg, var(--gold), #fff4e0);
}

.product-card--viewall:hover{
  background:#1e4434;
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(44,95,74,.3);
}

.viewall-inner{
  padding:40px 32px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.viewall-icon{
  width:72px;
  height:72px;
  background:rgba(255,255,255,.15);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  border:1.5px solid rgba(255,255,255,.3);
  margin-bottom:6px;
  transition:background .2s, transform .2s;
}

.product-card--viewall:hover .viewall-icon{
  background:rgba(255,255,255,.25);
  transform:rotate(10deg) scale(1.08);
}

.viewall-title{
  font-family:'Cormorant Garamond', serif;
  font-size:26px;
  font-weight:600;
  color:#fff;
}

.viewall-sub{
  font-size:13px;
  color:rgba(255,255,255,.75);
  line-height:1.7;
  max-width:240px;
}

.viewall-btn{
  display:inline-block;
  background:rgba(255,255,255,.15);
  border:1.5px solid rgba(255,255,255,.5);
  color:#fff;
  padding:10px 24px;
  border-radius:2px;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:500;
  margin-top:8px;
  transition:background .2s, border-color .2s;
}

.product-card--viewall:hover .viewall-btn{
  background:rgba(255,255,255,.25);
  border-color:#fff;
}

/* ---------- TEAM ---------- */
.team-bg{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

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

.team-card{
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:4px;
  padding:36px 28px;
  text-align:center;
  transition:transform .2s, box-shadow .2s;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  display:block;
  color:inherit;
}

.team-card::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--accent), var(--gold));
}

.team-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.team-avatar{
  width:72px;
  height:72px;
  background:var(--accent-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Cormorant Garamond', serif;
  font-size:24px;
  font-weight:600;
  color:var(--accent);
  margin:0 auto 16px;
  border:3px solid var(--border);
}

.emp-avatar-img{
  width:75px;
  height:75px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  margin:0 auto 16px;
  border:3px solid var(--border);
  background:var(--accent-light);
  transition:transform .25s ease;
}

.team-card h4{
  font-family:'Cormorant Garamond', serif;
  font-size:20px;
  font-weight:600;
  margin-bottom:4px;
  color:var(--ink);
}

.team-role{
  font-size:12px;
  color:var(--gold);
  font-weight:500;
  letter-spacing:.5px;
  margin-bottom:16px;
  text-transform:uppercase;
}

.view-profile{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:500;
}

.view-profile::after{
  content:'→';
  transition:transform .2s;
}

.team-card:hover .view-profile::after{ transform:translateX(4px); }

.is-disabled{
  opacity:.5;
  pointer-events:none;
}

.team-avatar-muted{
  font-size:14px;
  color:var(--light);
}

.muted{ color:var(--light) !important; }

/* ---------- COMPANY / ADDRESS ---------- */
.company-bg{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

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

.company-text p{
  font-size:15px;
  line-height:1.9;
  color:var(--mid);
  margin-bottom:16px;
}

.company-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--accent);
  color:#fff;
  padding:8px 18px;
  border-radius:20px;
  font-size:12px;
  font-weight:500;
  letter-spacing:.5px;
  margin-top:8px;
}

.address-card{
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:4px;
  padding:36px 32px;
}

.address-card h4{
  font-family:'Cormorant Garamond', serif;
  font-size:22px;
  font-weight:600;
  margin-bottom:20px;
  color:var(--ink);
}

.address-line{
  display:flex;
  gap:12px;
  margin-bottom:16px;
  font-size:14px;
  color:var(--mid);
  line-height:1.6;
}

.address-line a{
  color:var(--accent);
  text-decoration:none;
}

.dot{
  width:6px;
  height:6px;
  background:var(--gold);
  border-radius:50%;
  flex-shrink:0;
  margin-top:7px;
}

.divider{
  width:60px;
  height:1px;
  background:var(--border);
  margin:24px 0;
}

/* ---------- CONTACT ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.contact-card{
  background:var(--white);
  border:1px solid var(--border);
  padding:36px 28px;
  border-radius:4px;
  text-align:center;
  transition:transform .2s, box-shadow .2s;
}

.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.07);
}

.contact-icon{
  width:56px;
  height:56px;
  background:var(--accent-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin:0 auto 16px;
}

.contact-card h4{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--light);
  font-weight:500;
  margin-bottom:8px;
}

.contact-card p{
  font-size:14px;
  color:var(--ink);
  line-height:1.7;
}

.contact-card a{
  color:var(--accent);
  text-decoration:none;
}

/* ---------- FOOTER ---------- */
footer{
  background:var(--ink);
  color:#fff;
  text-align:center;
  padding:48px 60px;
}

.footer-logo{
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
  font-weight:600;
  color:#fff;
  margin-bottom:8px;
}

.footer-logo span{ color:var(--gold); margin-left:3px; }

.footer-sub{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-bottom:24px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:32px;
  list-style:none;
  margin-bottom:24px;
  flex-wrap:wrap;
}

.footer-links a{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  text-decoration:none;
  transition:color .2s;
}

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

.footer-copy{
  font-size:13px;
  color:rgba(255,255,255,.25);
}

/* ---------- ANIMATION ---------- */
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(28px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  nav{
    padding:16px 24px;
    position:sticky;
  }

  .nav-toggle{ display:block; }

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    left:auto;
    width:150px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:6px;
    flex-direction:column;
    gap:0;
    display:none;
    z-index:999;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
  }

  .nav-links li{ border-bottom:1px solid var(--border); }

  .nav-links a{
    display:block;
    padding:16px 24px;
    font-size:14px;
  }

  .nav-links.active{ display:flex; }

  .hero{ grid-template-columns:1fr; padding:40px 24px; gap:40px; min-height:auto; }
  section{ padding:60px 24px; }
  .about-grid, .company-grid{ grid-template-columns:1fr; gap:40px; }
  .products-grid{ grid-template-columns:1fr; }
  .team-grid, .contact-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .hero-actions{ flex-direction:column; }

  .product-img-wrap{ height:180px; }
}

@media (min-width:901px) and (max-width:1100px){
  .products-grid{ grid-template-columns:repeat(2, 1fr); }
}
