/*
Theme Name: A G Organica Private Limited
Theme URI: https://agorganica.com
Author: Ashish Kumar Srivastava
Author URI: https://pureoilsindia.com
Description: Professional B2B WordPress theme for private label cosmetic manufacturers. Features hero section, product catalog, services, certifications, infrastructure, testimonials, blog, and contact pages. Conversion-optimized for global buyers, distributors, and brand partners.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiderm
Tags: business, corporate, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready, blog, e-commerce, portfolio
*/

/* =========================================================
   A G Organica — WORDPRESS THEME STYLESHEET
   Design: Refined Editorial Luxury
   Fonts: Cormorant Garamond + DM Sans + DM Mono
   Palette: Warm Cream / Ink / Gold / Sage
   ========================================================= */

/* ─── CSS VARIABLES ─── */
:root {
  --ink:         #0D0D0B;
  --cream:       #F5F0E8;
  --warm-white:  #FAF8F4;
  --gold:        #B8960C;
  --gold-light:  #D4AF37;
  --sage:        #6B7C5E;
  --sage-light:  #8FA080;
  --stone:       #C4BEB4;
  --stone-dark:  #8A8478;
  --rust:        #9B4E2A;
  --section-gap: 7rem;
  --nav-height:  68px;
  --radius:      0px;
  --transition:  0.25s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: #3A3933; line-height: 1.75; }
h2 {color:#7A160F;}
.label-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-dark);
  display: block;
  margin-bottom: 0.8rem;
}

/* ─── LAYOUT (section           { padding: var(--section-gap) 0; }) ─── */
.container        { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
section           { padding: 30px 0px; }
.section-header   { margin-bottom: 3.5rem; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }

/* ─── BUTTONS ─── */
.btn-primary, .wp-block-button__link {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #7A160F;
  color: var(--cream) !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--ink);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink) !important; }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--ink);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-gold {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline-light {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #7A160F;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid rgba(245,240,232,0.35);
  transition: all var(--transition);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 0.55rem 1.3rem !important; font-size: 0.8rem !important; }


.about-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

/* ─── NAVIGATION ─── */
#site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,170,155,0.3);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.site-logo a span { color: var(--gold); }

/* Primary Navigation */
#primary-navigation { display: flex; align-items: center; }
#primary-navigation ul { display: flex; gap: 2rem; align-items: center; }
#primary-navigation ul li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a { color: var(--gold); }
#primary-navigation ul li.menu-cta a {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
}
#primary-navigation ul li.menu-cta a:hover { background: var(--gold); color: var(--ink) !important; }

/* Dropdown */
#primary-navigation ul li { position: relative; }
#primary-navigation ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 1px solid var(--stone);
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 100;
}
#primary-navigation ul li:hover > ul { display: flex; }
#primary-navigation ul li ul li a { padding: 0.6rem 1.2rem; font-size: 0.85rem; display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding: 1.5rem 2rem;
  z-index: 999;
}
#mobile-menu.active { display: block; }
#mobile-menu ul { flex-direction: column; gap: 0; }
#mobile-menu ul li a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,190,180,0.4);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

/* ─── HERO SECTION ─── */
.hero-section {
  min-height: 100vh;
  background: var(--ink);
	background-image: url('https://www.agorganica.com/wp-content/uploads/2026/04/ago-banner.png');
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: linear-gradient(135deg, #1A1A16 0%, #0D0D0B 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.8; pointer-events: none;
}
.hero-accent-line {
  position: absolute; top: 20%; right: 28%;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4; pointer-events: none;
}
.hero-dots {
  position: absolute; bottom: 10%; right: 10%;
  display: grid; grid-template-columns: repeat(6,1fr); gap: 10px;
  opacity: 0.15; pointer-events: none;
}
.hero-dots span { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: block; }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(184,150,12,0.12);
  border: 1px solid rgba(184,150,12,0.35);
  padding: 0.45rem 1rem; margin-bottom: 2rem;
  color: var(--gold-light); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero-section h1 { color: #7A160F; margin-bottom: 1.6rem; }
.hero-section h1 em { font-style: italic; color: var(--gold-light); }
.hero-section .hero-desc {
  color: #7A160F;
  font-size: 1.1rem; max-width: 560px;
  margin-bottom: 2.8rem; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold-light); display: block; line-height: 1;
}
.hero-stat .desc {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.hero-certifications {
  position: absolute; bottom: 2.5rem; right: 2rem;
  display: flex; gap: 1rem; z-index: 2;
}
.cert-chip {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.15);
  padding: 0.4rem 0.9rem;
  color: rgba(245,240,232,0.6); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

/* ─── MARQUEE ─── */
.marquee-wrapper {
  background: #7A160F;
  padding: 0.85rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span {
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff;
  display: inline-flex; align-items: center; gap: 1.2rem;
}
.marquee-track span::after { content: '◆'; opacity: 0.5; font-size: 0.5rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── ABOUT ─── */
.about-section { background: var(--warm-white); }
.about-visual { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0; right: 3rem; bottom: 3rem;
  /*background: linear-gradient(135deg, #2A2820 0%, #1A1A15 100%);*/
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.about-img-main .lab-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%; font-size: 5rem; opacity: 0.3;
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
  background: #7A160F;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; padding: 1.5rem; text-align: center;
}
.about-img-accent .big-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: #ffffff; line-height: 1; }
.about-img-accent .big-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #ffffff; margin-top: 0.3rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.about-pillar { display: flex; align-items: flex-start; gap: 0.8rem; }
.pillar-icon { width: 36px; height: 36px; background: var(--cream); border: 1px solid var(--stone); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.pillar-text { font-size: 0.9rem; font-weight: 500; }

/* ─── SERVICES ─── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--stone);
  border: 1.5px solid var(--stone);
}
.service-card {
  background: #fff; padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.service-card:hover { background: #7A160F; }
.service-card:hover .svc-num,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .svc-tag { color: var(--cream); border-color: rgba(245,240,232,0.2); }
.service-card:hover .svc-line { background: var(--gold); }
.svc-num { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--stone-dark); display: block; margin-bottom: 1.2rem; transition: color 0.3s; }
.svc-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 1.2rem; transition: background 0.3s; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.9rem; transition: color 0.3s; }
.service-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; transition: color 0.3s; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.svc-tag { font-size: 0.72rem; padding: 0.25rem 0.7rem; border: 1px solid var(--stone); color: var(--stone-dark); font-family: 'DM Mono', monospace; letter-spacing: 0.05em; transition: color 0.3s, border-color 0.3s; }

/* ─── PRODUCTS ─── */
.products-section { background: #ffffff;}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.product-card {
  border: 1px solid var(--stone); padding: 1.8rem 1.5rem;
  background: #fff; position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.product-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: #7A160F; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { border-color: #7A160F; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.product-card .product-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.product-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 0.5rem; }
.product-card > p { font-size: 0.83rem; color: var(--stone-dark); margin-bottom: 1.2rem; line-height: 1.6; }
.product-card-ctas { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ─── CERTIFICATIONS ─── */
.certifications-section { background: #7A160F; color: #fff; }
.certifications-section .label-tag { color: var(--gold); }
.certifications-section h2 { color: var(--cream); margin-bottom: 1rem; }
.certifications-section .section-intro { color: rgba(245,240,232,0.65); margin-bottom: 3.5rem; max-width: 600px; }
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(245,240,232,0.1);
  border: 1px solid rgba(245,240,232,0.1);
  margin-bottom: 4rem;
}
.cert-item { background: #7A160F; padding: 2rem 1.5rem; text-align: center; }
.cert-badge-icon { width: 60px; height: 60px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; }
.cert-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cream); margin-bottom: 0.4rem; }
.cert-item p { font-size: 0.82rem; color: rgba(245,240,232,0.5); }
.qc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.qc-steps::before { content: ''; position: absolute; top: 1.8rem; left: 2rem; right: 2rem; height: 1px; background: var(--gold); opacity: 0.3; }
.qc-step { padding: 0 1.5rem; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 0.75rem; font-weight: 500; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.qc-step h4 { color: var(--cream); font-size: 1rem; margin-bottom: 0.5rem; font-family: 'Cormorant Garamond', serif; }
.qc-step p { font-size: 0.83rem; color: rgba(245,240,232,0.5); }

/* ─── INFRASTRUCTURE ─── */
.infrastructure-section { background: #fff; }
.infra-visual {
  background: var(--stone);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
}
.infra-stat-box { background: #7A160F; padding: 2rem 1.5rem; text-align: center; }
.infra-stat-box .val { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--gold-light); display: block; }
.infra-stat-box .lbl { font-size: 0.78rem; color: rgba(245,240,232,0.55); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 0.2rem; }
.infra-features { list-style: none; margin-top: 2rem; }
.infra-features li { padding: 0.9rem 0; border-bottom: 1px solid var(--stone); display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.9rem; }
.infra-features li::before { content: '→'; color: var(--gold); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ─── WHY CHOOSE US ─── */
.why-us-section { background: var(--warm-white); }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.usp-card { padding: 2rem; border-top: 3px solid var(--stone); transition: border-color 0.25s; background: #fff; }
.usp-card:hover { border-top-color: var(--gold); }
.usp-card .usp-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.usp-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.6rem; }
.usp-card p { font-size: 0.88rem; color: var(--stone-dark); }

/* ─── INDUSTRIES ─── */
.industries-section { background:#ffffff; }
.industries-flex { display: flex; flex-wrap: wrap; gap: 1rem; }
.industry-pill {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.6rem; border: 1px solid var(--stone); background: #fff;
  font-size: 0.9rem; font-weight: 500; transition: all 0.25s; cursor: default;
}
.industry-pill:hover { background: #7A160F; color: var(--cream); border-color: #7A160F; }
.industry-pill span { font-size: 1.3rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--warm-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testi-card { padding: 2.2rem; border: 1px solid var(--stone); position: relative; background: #fff; }
.testi-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold); position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.testi-card .testi-content { font-size: 0.92rem; line-height: 1.75; color: #3A3933; margin-bottom: 1.5rem; padding-top: 1.2rem; }
.testi-author strong { font-size: 0.9rem; font-weight: 600; display: block; }
.testi-author span { font-size: 0.78rem; color: var(--stone-dark); margin-top: 0.15rem; display: block; }
.testi-country { font-size: 0.72rem; font-family: 'DM Mono', monospace; color: var(--gold); letter-spacing: 0.05em; margin-top: 0.3rem; }
.global-presence { margin-top: 4rem; text-align: center; }
.country-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.2rem; }
.country-chip { background: var(--cream); border: 1px solid var(--stone); padding: 0.35rem 0.9rem; font-size: 0.8rem; color: var(--stone-dark); font-family: 'DM Mono', monospace; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--warm-white); padding: 5rem 0; text-align: center; }
.cta-band .label-tag { color: rgba(0,0,0,0.5); margin-bottom: 1rem; }
.cta-band h2 { color: var(--ink); margin-bottom: 1rem; }
.cta-band .cta-desc { color: rgba(0,0,0,0.65); margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BLOG / POSTS ─── */
.posts-section { background: #ffffff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { border: 1px solid var(--stone); overflow: hidden; transition: box-shadow 0.25s; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.blog-thumb { height: 200px; overflow: hidden; background: linear-gradient(135deg, #1A1A15, #2A2820); position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; opacity: 0.3; }
.blog-body { padding: 1.5rem; }
.blog-cat { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem; }
.blog-card h3 a { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; line-height: 1.3; color: var(--ink); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.83rem; color: var(--stone-dark); margin: 0.6rem 0 1rem; }
.blog-meta { font-size: 0.75rem; color: var(--stone); }

/* ─── SINGLE POST ─── */
.single-post-hero { padding: 8rem 0 4rem; background: var(--ink); }
.single-post-hero h1 { color: var(--cream); max-width: 800px; }
.single-post-hero .post-meta { color: rgba(245,240,232,0.5); font-size: 0.85rem; margin-top: 1rem; }
.post-content { padding: 0rem 0; }
.post-content .container { max-width: 1100px; }
.post-content h2, .post-content h3 { margin: 2rem 0 1rem; }
.post-content p { margin-bottom: 1.2rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.post-content ul li, .post-content ol li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.post-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; background: var(--cream); margin: 2rem 0; font-style: italic; }

/* ─── INNER PAGE HERO ─── */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(135deg, #1A1A16, #0D0D0B);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.7;
}
.page-hero .label-tag { color: var(--gold); }
.page-hero h1 { color: var(--cream); margin: 0.6rem 0 1rem; position: relative; z-index: 1; }
.page-hero p { color: rgba(245,240,232,0.65); max-width: 600px; position: relative; z-index: 1; }

/* ─── CONTACT ─── */
.contact-section { background: var(--warm-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; }
.contact-icon { width: 42px; height: 42px; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-info-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; font-family: 'DM Sans', sans-serif; }
.contact-info-item p { font-size: 0.85rem; color: var(--stone-dark); }
.inquiry-form { background: var(--cream); padding: 2.5rem; }
.inquiry-form h3 { margin-bottom: 0.4rem; }
.form-intro { font-size: 0.85rem; color: var(--stone-dark); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--stone-dark); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--stone);
  background: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--ink);
  transition: border-color 0.2s; outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--stone-dark); margin-top: 0.8rem; }
.form-success-msg {
  display: none; padding: 1.2rem;
  background: #f0f7ee; border: 1px solid var(--sage);
  color: var(--sage); font-size: 0.9rem;
  margin-top: 1rem; text-align: center;
}
.wpcf7-response-output { margin-top: 1rem !important; border: 1px solid var(--stone) !important; padding: 1rem !important; font-size: 0.88rem !important; }
.wpcf7-mail-sent-ok { border-color: var(--sage) !important; color: var(--sage) !important; background: #f0f7ee; }
.wpcf7-validation-errors { border-color: var(--rust) !important; color: var(--rust) !important; }

/* ─── ABOUT PAGE STYLES ─── */
.about-page-section { padding: var(--section-gap) 0; }
.timeline { border-left: 2px solid var(--stone); padding-left: 2rem; }
.timeline-item { margin-bottom: 2.5rem; position: relative; }
.timeline-item::before { content: ''; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: absolute; left: -2.6rem; top: 0.4rem; }
.timeline-year { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 0.3rem; }
.timeline-item h4 { margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.88rem; color: var(--stone-dark); }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.vm-card { padding: 2rem; background: var(--cream); border-top: 3px solid var(--gold); }
.vm-card h3 { margin-bottom: 0.8rem; }
.vm-card p { font-size: 0.9rem; color: var(--stone-dark); }

/* ─── SERVICE DEEP STYLES ─── */
.service-deep { margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--stone); }
.service-deep:last-child { border-bottom: none; }
.service-deep-header { display: flex; align-items: flex-start; gap: 2rem; margin-bottom: 1.5rem; }
.service-deep-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 600; color: var(--stone); line-height: 1; flex-shrink: 0; }
.service-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.5rem; }
.benefit-check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.benefit-check::before { content: '✓'; color: var(--sage); font-weight: 700; }

/* ─── FOOTER ─── */
#site-footer { background: var(--ink); color: var(--cream); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; }
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: rgba(245,240,232,0.55); margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-cert-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-cert-badge { border: 1px solid rgba(245,240,232,0.15); padding: 0.25rem 0.7rem; font-size: 0.65rem; color: rgba(245,240,232,0.4); font-family: 'DM Mono', monospace; letter-spacing: 0.05em; }
.footer-col h5 { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: #ffffff; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(245,240,232,0.55); font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(245,240,232,0.35); }
.footer-bottom-badges { display: flex; gap: 0.6rem; }

/* ─── WORDPRESS DEFAULTS ─── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--stone-dark); text-align: center; margin-top: 0.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9999; padding: 0.5rem 1rem; background: var(--gold); color: var(--ink); }

/* ─── PAGINATION ─── */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 0.6rem 1rem; border: 1px solid var(--stone);
  font-size: 0.88rem; color: var(--ink); transition: all 0.2s;
}
.pagination a:hover, .pagination .current { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .products-grid, .grid-4, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .qc-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .qc-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --section-gap: 4.5rem; }
  #primary-navigation { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .usp-grid, .testi-grid, .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .vision-mission, .service-benefits { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .hero-stats { gap: 1.5rem; }
  .hero-certifications { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-story-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-bg-pattern {   background: none;}
	.hero-stats {display: none}
	.hero-desc {display: none}
	.blog-grid {     display: block;}
	.blog-card {margin-bottom: 20px;}
}
