*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-dark:#2f6f05;
  --green-mid:#47a803;
  --green-soft:#e9f6df;
  --sun-gold:#f6b800;
  --sun-amber:#e6820a;
  --red:#cc0316;
  --red-soft:#ffe9ec;
  --white:#ffffff;
  --off-white:#f8faf5;
  --cream:#eef6e7;
  --ink:#172b0f;
  --muted:#516b48;
  --line:rgba(47,111,5,.16);
  --shadow:0 22px 70px rgba(23,43,15,.11);
  --shadow-soft:0 14px 38px rgba(23,43,15,.07);
  --radius:24px;
  --radius-sm:14px;
}
html { scroll-behavior: smooth; }
body { font-family:'DM Sans', sans-serif; background:var(--off-white); color:var(--ink); overflow-x:hidden; }
a { color: inherit; text-decoration: none; }
img { max-width:100%; display:block; }
button, input, select, textarea { font:inherit; }
button { cursor:pointer; }
.page-shell { padding-top:76px; min-height:100vh; }
.container { width:min(1180px, 90vw); margin-inline:auto; }
.nav { position:fixed; top:0; left:0; right:0; height:76px; z-index:1000; background:rgba(248,250,245,.97); backdrop-filter:blur(16px); border-bottom:1px solid var(--line); }
.nav-inner { height:100%; display:flex; align-items:center; justify-content:space-between; gap:22px; }
.nav-logo-wrap { display:flex; align-items:center; gap:12px; min-width:220px; }
.nav-logo-img { height:48px; width:auto; object-fit:contain; }
.nav-brand-text { display:flex; flex-direction:column; line-height:1.08; }
.nav-brand-main { font-family:'Playfair Display', serif; font-size:19px; font-weight:900; letter-spacing:-.3px; }
.nav-brand-sub { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:800; }
.nav-links { display:flex; list-style:none; align-items:center; gap:8px; }
.nav-links a { color:var(--muted); padding:10px 13px; border-radius:999px; font-size:14px; font-weight:700; transition:.2s ease; }
.nav-links a:hover, .nav-links a.active { color:var(--green-dark); background:rgba(71,168,3,.10); }
.nav-cta { background:var(--green-dark)!important; color:#fff!important; padding:11px 20px!important; box-shadow:0 12px 28px rgba(47,111,5,.22); }
.mobile-toggle { display:none; border:1px solid var(--line); background:#fff; border-radius:999px; padding:10px 13px; }
.btn-primary, .btn-secondary, .btn-ghost { border:0; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; gap:8px; font-weight:900; transition:.22s ease; white-space:nowrap; }
.btn-primary { background:var(--green-dark); color:#fff; padding:15px 25px; box-shadow:0 14px 32px rgba(47,111,5,.24); }
.btn-primary:hover { background:var(--ink); transform:translateY(-2px); }
.btn-secondary { background:#fff; color:var(--green-dark); border:2px solid var(--green-dark); padding:13px 24px; }
.btn-secondary:hover { background:var(--green-dark); color:#fff; transform:translateY(-2px); }
.btn-ghost { background:rgba(47,111,5,.09); color:var(--green-dark); padding:11px 18px; }
.section { padding:92px 0; }
.section-tight { padding:64px 0; }
.section-alt { background:var(--cream); border-block:1px solid var(--line); }
.center { text-align:center; }
.eyebrow { color:var(--sun-amber); text-transform:uppercase; letter-spacing:2.6px; font-size:11px; font-weight:900; margin-bottom:14px; }
.section-title { font-family:'Playfair Display', serif; font-size:clamp(34px,4.4vw,62px); line-height:1.04; letter-spacing:-1.5px; margin-bottom:16px; }
.section-sub { color:var(--muted); font-size:17px; line-height:1.75; max-width:720px; margin:0 auto 48px; }
.hero { min-height:calc(100vh - 76px); display:grid; align-items:center; background:radial-gradient(circle at 13% 20%, rgba(71,168,3,.12), transparent 30%), radial-gradient(circle at 84% 16%, rgba(246,184,0,.14), transparent 32%), radial-gradient(circle at 72% 88%, rgba(204,3,22,.055), transparent 28%), var(--off-white); overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:1.03fr .97fr; align-items:center; gap:58px; padding:68px 0; }
.hero h1 { font-family:'Playfair Display', serif; font-size:clamp(46px,7vw,92px); line-height:.95; letter-spacing:-2.5px; margin-bottom:24px; }
.hero h1 em { color:var(--green-dark); font-style:italic; }
.hero-sub { color:var(--muted); font-size:18px; line-height:1.76; max-width:620px; margin-bottom:30px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.trust-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.trust-pill { display:inline-flex; align-items:center; gap:8px; border:1px solid var(--line); background:rgba(255,255,255,.78); border-radius:999px; padding:10px 13px; color:var(--muted); font-size:13px; font-weight:800; }
.hero-card { position:relative; min-height:548px; border:1px solid var(--line); background:linear-gradient(150deg,#fff,#f4faef); border-radius:38px; padding:26px; box-shadow:var(--shadow); overflow:hidden; }
.hero-card::before { content:''; position:absolute; width:330px; height:330px; right:-130px; top:-80px; border-radius:50%; background:rgba(246,184,0,.14); }
.hero-card::after { content:''; position:absolute; width:250px; height:250px; left:-100px; bottom:-85px; border-radius:50%; background:rgba(71,168,3,.12); }
.brand-plate { position:relative; z-index:2; background:#fff; border:1px solid var(--line); border-radius:28px; padding:22px; display:flex; align-items:center; gap:18px; box-shadow:0 16px 36px rgba(23,43,15,.08); }
.brand-plate img { width:94px; height:auto; }
.brand-plate strong { font-family:'Playfair Display', serif; font-size:28px; line-height:1; }
.brand-plate span { color:var(--muted); display:block; margin-top:5px; font-weight:700; }
.mockup-board { position:relative; z-index:2; height:350px; margin-top:28px; }
.mockup { position:absolute; background:#fff; border:1px solid var(--line); border-radius:22px; box-shadow:0 20px 46px rgba(23,43,15,.12); overflow:hidden; }
.mockup .mock-title { position:absolute; left:18px; bottom:18px; right:18px; font-weight:900; color:#fff; z-index:2; text-shadow:0 2px 10px rgba(0,0,0,.18); }
.mockup-box { width:250px; height:210px; left:20px; top:18px; background:linear-gradient(135deg,#f7fff1,#dcefcf); transform:rotate(-5deg); }
.mockup-box::before { content:''; position:absolute; left:44px; top:55px; width:160px; height:96px; background:#fff; border:2px solid rgba(47,111,5,.25); transform:skewY(-8deg); box-shadow:inset 0 -28px 0 rgba(71,168,3,.11); }
.mockup-box::after { content:'VPS'; position:absolute; left:88px; top:86px; color:var(--green-dark); font-family:'Playfair Display', serif; font-size:36px; font-weight:900; }
.mockup-label { width:235px; height:180px; right:4px; top:66px; background:linear-gradient(135deg,#fff8dc,#fde7a6); transform:rotate(6deg); }
.mockup-label::before { content:''; position:absolute; inset:34px 28px; border-radius:18px; background:#fff; border:2px dashed rgba(230,130,10,.32); }
.mockup-label::after { content:'LABELS'; position:absolute; left:60px; top:76px; color:#9a5800; font-weight:900; letter-spacing:2px; }
.mockup-bag { width:230px; height:210px; left:155px; bottom:0; background:linear-gradient(150deg,#fff,#ffecef); transform:rotate(1deg); }
.mockup-bag::before { content:''; position:absolute; left:55px; top:42px; width:120px; height:130px; background:#fff; border:2px solid rgba(204,3,22,.20); border-radius:8px 8px 18px 18px; box-shadow:inset 0 34px 0 rgba(204,3,22,.08); }
.mockup-bag::after { content:''; position:absolute; left:86px; top:27px; width:60px; height:34px; border:4px solid rgba(204,3,22,.35); border-bottom:0; border-radius:44px 44px 0 0; }
.stat-section { background:var(--ink); color:#fff; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:38px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right:0; }
.stat-num { font-family:'Playfair Display', serif; color:var(--sun-gold); font-weight:900; font-size:50px; line-height:1; }
.stat-label { opacity:.66; font-size:12px; text-transform:uppercase; letter-spacing:1.5px; margin-top:9px; font-weight:900; }
.quick-section { padding:36px 0 82px; background:linear-gradient(180deg,var(--off-white),#fff); }
.quick-actions { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.quick-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-soft); transition:.22s ease; }
.quick-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.quick-card .icon { width:54px; height:54px; display:grid; place-items:center; font-size:28px; border-radius:16px; background:var(--green-soft); margin-bottom:18px; }
.quick-card:nth-child(2) .icon { background:#fff3d3; }
.quick-card:nth-child(3) .icon { background:#ffe9ec; }
.quick-card h3 { font-family:'Playfair Display', serif; font-size:26px; margin-bottom:10px; }
.quick-card p { color:var(--muted); font-size:15px; line-height:1.65; }
.card, .finder-card, .widget-card, .journey-card, .quote-card, .blog-card, .contact-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-soft); }
.category-strip { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:34px; }
.chip { border:1px solid var(--line); background:#fff; color:var(--muted); border-radius:999px; padding:10px 15px; font-size:13px; font-weight:900; transition:.18s ease; }
.chip.active, .chip:hover { background:var(--green-dark); color:#fff; border-color:var(--green-dark); }
.product-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(265px,1fr)); gap:24px; }
.product-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft); display:flex; flex-direction:column; transition:.24s ease; }
.product-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.product-img { min-height:200px; display:block; background:var(--cream); overflow:hidden; }
.product-body { padding:22px; flex:1; display:flex; flex-direction:column; }
.badge { display:inline-flex; align-items:center; gap:7px; border-radius:999px; padding:8px 11px; background:rgba(246,184,0,.14); color:#7a5200; font-size:11px; font-weight:900; letter-spacing:.7px; text-transform:uppercase; width:max-content; }
.product-body h3 { font-family:'Playfair Display', serif; font-size:24px; line-height:1.15; margin:14px 0 9px; }
.product-body p { color:var(--muted); line-height:1.65; font-size:14px; flex:1; }
.card-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.card-actions .btn-primary, .card-actions .btn-secondary { font-size:13px; padding:10px 15px; }
.product-visual { position:relative; min-height:200px; height:100%; overflow:hidden; background:linear-gradient(135deg,#f9fff5,#eef6e7); display:grid; place-items:center; isolation:isolate; }
.product-visual::before { content:''; position:absolute; inset:-50px; background:radial-gradient(circle at 20% 15%, rgba(246,184,0,.20), transparent 25%), radial-gradient(circle at 80% 80%, rgba(71,168,3,.18), transparent 28%); z-index:-1; }
.product-visual.detail { min-height:430px; border-radius:var(--radius); border:1px solid var(--line); box-shadow:var(--shadow-soft); }
.visual-caption { position:absolute; left:18px; right:18px; bottom:18px; background:rgba(255,255,255,.88); border:1px solid var(--line); backdrop-filter:blur(10px); border-radius:16px; padding:12px 14px; display:flex; align-items:center; gap:10px; font-weight:900; }
.visual-caption span { font-size:23px; }
.visual-caption strong { font-size:14px; line-height:1.2; }
.visual-object { position:relative; width:180px; height:130px; transform:translateY(-12px); }
.product-visual.detail .visual-object { width:300px; height:210px; }
.shape-box, .shape-sheet, .shape-label, .shape-bag, .shape-food, .shape-tag { position:absolute; inset:0; }
.shape-box::before { content:''; position:absolute; left:28px; top:34px; width:124px; height:82px; background:#fff; border:3px solid rgba(47,111,5,.32); transform:skewY(-8deg); box-shadow:inset 0 -28px 0 rgba(71,168,3,.13), 0 18px 35px rgba(23,43,15,.12); }
.shape-box::after { content:'VPS'; position:absolute; left:62px; top:60px; color:var(--green-dark); font-family:'Playfair Display', serif; font-size:28px; font-weight:900; }
.shape-sheet::before { content:''; position:absolute; left:36px; top:18px; width:112px; height:126px; border-radius:8px; background:#fff; border:2px solid rgba(230,130,10,.28); box-shadow:12px 12px 0 rgba(246,184,0,.16), 0 18px 35px rgba(23,43,15,.10); }
.shape-sheet::after { content:''; position:absolute; left:58px; top:48px; width:70px; height:12px; border-radius:999px; background:rgba(230,130,10,.4); box-shadow:0 26px 0 rgba(47,111,5,.3), 0 52px 0 rgba(204,3,22,.25); }
.shape-label::before { content:''; position:absolute; left:28px; top:32px; width:130px; height:82px; border-radius:20px; background:#fff; border:3px dashed rgba(230,130,10,.38); box-shadow:0 18px 35px rgba(23,43,15,.10); }
.shape-label::after { content:'LABEL'; position:absolute; left:58px; top:64px; color:#8a5b00; font-size:16px; letter-spacing:2px; font-weight:900; }
.shape-bag::before { content:''; position:absolute; left:52px; top:42px; width:84px; height:96px; border-radius:9px 9px 22px 22px; background:#fff; border:3px solid rgba(204,3,22,.25); box-shadow:inset 0 28px 0 rgba(204,3,22,.08), 0 18px 35px rgba(23,43,15,.12); }
.shape-bag::after { content:''; position:absolute; left:74px; top:22px; width:44px; height:32px; border:4px solid rgba(204,3,22,.36); border-bottom:0; border-radius:44px 44px 0 0; }
.shape-food::before { content:''; position:absolute; left:28px; top:48px; width:130px; height:76px; border-radius:12px; background:#fff; border:3px solid rgba(204,3,22,.25); box-shadow:inset 0 24px 0 rgba(246,184,0,.22), 0 18px 35px rgba(23,43,15,.10); }
.shape-food::after { content:''; position:absolute; left:58px; top:24px; width:70px; height:38px; border-radius:50% 50% 8px 8px; background:rgba(246,184,0,.75); }
.shape-tag::before { content:''; position:absolute; left:58px; top:22px; width:74px; height:112px; border-radius:10px 10px 24px 24px; background:#fff; border:3px solid rgba(47,111,5,.25); transform:rotate(-9deg); box-shadow:0 18px 35px rgba(23,43,15,.12); }
.shape-tag::after { content:''; position:absolute; left:82px; top:42px; width:14px; height:14px; border-radius:50%; background:rgba(47,111,5,.35); box-shadow:0 32px 0 rgba(246,184,0,.45), 0 58px 0 rgba(204,3,22,.24); }
.product-visual.detail .shape-box::before { left:45px; top:54px; width:210px; height:140px; }
.product-visual.detail .shape-box::after { left:102px; top:99px; font-size:44px; }
.product-visual.detail .shape-sheet::before { left:75px; width:160px; height:190px; }
.product-visual.detail .shape-sheet::after { left:108px; top:64px; width:95px; }
.product-visual.detail .shape-label::before { left:48px; top:55px; width:210px; height:135px; }
.product-visual.detail .shape-label::after { left:98px; top:108px; font-size:27px; }
.product-visual.detail .shape-bag::before { left:96px; top:65px; width:125px; height:145px; }
.product-visual.detail .shape-bag::after { left:128px; top:30px; width:64px; height:48px; }
.product-visual.detail .shape-food::before { left:44px; top:86px; width:210px; height:118px; }
.product-visual.detail .shape-food::after { left:92px; top:45px; width:112px; height:60px; }
.product-visual.detail .shape-tag::before { left:110px; top:40px; width:105px; height:160px; }
.product-visual.detail .shape-tag::after { left:143px; top:70px; }
.finder-wrap { display:grid; grid-template-columns:1fr 1fr; gap:26px; align-items:stretch; }
.finder-card { padding:30px; min-height:430px; }
.finder-top { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:20px; }
.progress-pills { display:flex; gap:8px; }
.progress-pill { height:9px; width:54px; border-radius:999px; background:rgba(47,111,5,.12); }
.progress-pill.active { background:var(--green-dark); }
.finder-card h3 { font-family:'Playfair Display', serif; font-size:34px; line-height:1.1; margin-bottom:10px; }
.finder-card .helper { color:var(--muted); line-height:1.65; margin-bottom:22px; }
.option-grid { display:grid; gap:12px; }
.option-btn { border:1px solid var(--line); background:var(--off-white); color:var(--ink); border-radius:16px; padding:16px; text-align:left; transition:.18s ease; display:flex; gap:12px; align-items:flex-start; font-weight:900; }
.option-btn small { display:block; color:var(--muted); font-weight:600; margin-top:5px; line-height:1.35; }
.option-btn:hover, .option-btn.selected { background:rgba(71,168,3,.10); border-color:var(--green-mid); transform:translateY(-1px); }
.option-icon { font-size:22px; width:30px; text-align:center; }
.finder-actions { display:flex; gap:10px; align-items:center; margin-top:22px; }
.finder-result { padding:30px; min-height:430px; display:flex; flex-direction:column; justify-content:space-between; background:linear-gradient(145deg,#fff,#fbfdf8); }
.finder-result h3 { font-family:'Playfair Display', serif; font-size:34px; line-height:1.1; margin-bottom:10px; }
.finder-result p { color:var(--muted); line-height:1.7; }
.summary-list { display:grid; gap:10px; margin:22px 0; }
.summary-row { display:flex; justify-content:space-between; gap:16px; align-items:center; padding:12px 14px; border:1px solid var(--line); background:var(--off-white); border-radius:14px; font-size:14px; }
.summary-row strong { color:var(--green-dark); }
.result-list { display:grid; gap:12px; margin:18px 0; }
.result-item { display:flex; justify-content:space-between; align-items:center; gap:12px; border:1px solid var(--line); background:#fff; border-radius:16px; padding:13px 14px; }
.result-item strong { display:block; font-size:14px; }
.result-item span { display:block; color:var(--muted); font-size:12px; margin-top:3px; }
.page-hero { padding:64px 0 48px; background:linear-gradient(135deg,var(--cream),var(--off-white)); border-bottom:1px solid var(--line); }
.breadcrumbs { display:flex; gap:8px; align-items:center; flex-wrap:wrap; color:var(--muted); font-size:13px; margin-bottom:18px; }
.breadcrumbs a { color:var(--green-dark); font-weight:900; }
.page-hero h1 { font-family:'Playfair Display', serif; font-size:clamp(42px,5.8vw,76px); line-height:1; letter-spacing:-1.8px; margin-bottom:16px; }
.page-hero p { color:var(--muted); max-width:760px; line-height:1.75; font-size:17px; }
.catalog-tools { display:grid; grid-template-columns:1fr 260px; gap:14px; margin-bottom:28px; }
.search-box, .select-box, .field input, .field select, .field textarea, .quote-controls select { width:100%; border:1px solid var(--line); background:#fff; border-radius:16px; padding:15px 16px; outline:none; color:var(--ink); }
.search-box:focus, .select-box:focus, .field input:focus, .field select:focus, .field textarea:focus, .quote-controls select:focus { border-color:var(--green-mid); box-shadow:0 0 0 4px rgba(71,168,3,.10); }
.product-detail-grid { display:grid; grid-template-columns:.98fr 1.02fr; gap:44px; align-items:start; }
.product-info h1 { font-family:'Playfair Display', serif; font-size:clamp(40px,5vw,68px); line-height:1; letter-spacing:-1.6px; margin:18px 0; }
.product-info .lead { color:var(--muted); font-size:18px; line-height:1.75; margin-bottom:24px; }
.spec-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:28px 0; }
.spec-card { border:1px solid var(--line); background:#fff; border-radius:16px; padding:16px; }
.spec-card span { display:block; color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:1.2px; font-weight:900; margin-bottom:6px; }
.spec-card b { font-size:14px; line-height:1.35; }
.gallery-switch { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:14px; }
.gallery-switch button { background:#fff; border:1px solid var(--line); border-radius:14px; padding:12px; text-align:left; font-weight:900; color:var(--muted); transition:.18s ease; }
.gallery-switch button.active, .gallery-switch button:hover { border-color:var(--green-dark); color:var(--green-dark); background:rgba(71,168,3,.08); }
.tab-bar { display:flex; gap:8px; border-bottom:1px solid var(--line); margin-top:20px; }
.tab-btn { border:0; background:transparent; padding:13px 14px; color:var(--muted); font-weight:900; border-bottom:3px solid transparent; }
.tab-btn.active { color:var(--green-dark); border-bottom-color:var(--green-dark); }
.tab-panel { padding:22px 0; color:var(--muted); line-height:1.75; }
.tab-panel ul { padding-left:20px; display:grid; gap:8px; }
.quote-card { padding:26px; margin-top:24px; }
.quote-card h3 { font-family:'Playfair Display', serif; font-size:30px; margin-bottom:8px; }
.quote-controls { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:18px 0; }
.estimate { background:var(--ink); color:#fff; border-radius:18px; padding:18px; display:flex; justify-content:space-between; gap:18px; align-items:center; }
.estimate b { color:var(--sun-gold); font-size:28px; font-family:'Playfair Display', serif; }
.estimate small { color:rgba(255,255,255,.65); line-height:1.5; display:block; }
.journey-shell { display:grid; grid-template-columns:310px 1fr; gap:24px; }
.journey-tabs { display:grid; gap:10px; }
.journey-tab { text-align:left; display:flex; align-items:center; gap:12px; border:1px solid var(--line); background:#fff; border-radius:18px; padding:14px; color:var(--muted); transition:.18s ease; }
.journey-tab.active, .journey-tab:hover { background:var(--ink); color:#fff; border-color:var(--ink); transform:translateX(3px); }
.journey-tab .num { color:var(--sun-gold); font-family:'Playfair Display', serif; font-size:24px; font-weight:900; }
.journey-card { padding:32px; min-height:350px; }
.journey-card h3 { font-family:'Playfair Display', serif; font-size:42px; line-height:1.05; margin-bottom:14px; }
.journey-card p { color:var(--muted); font-size:17px; line-height:1.75; margin-bottom:22px; }
.check-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.check-item { border:1px solid var(--line); background:var(--off-white); border-radius:16px; padding:14px; color:var(--muted); font-size:14px; line-height:1.45; }
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.blog-card { overflow:hidden; display:flex; flex-direction:column; }
.blog-visual { min-height:150px; background:linear-gradient(135deg,#f9fff5,#fff1c8); display:grid; place-items:center; font-size:44px; position:relative; }
.blog-visual::after { content:''; position:absolute; width:120px; height:80px; border-radius:18px; border:2px solid rgba(47,111,5,.15); background:rgba(255,255,255,.4); transform:rotate(-5deg); }
.blog-body { padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-body h3 { font-family:'Playfair Display', serif; font-size:25px; line-height:1.18; margin:12px 0 10px; }
.blog-body p { color:var(--muted); line-height:1.65; flex:1; }
.blog-meta { display:flex; justify-content:space-between; gap:12px; color:var(--muted); font-size:13px; font-weight:800; margin-top:18px; }
.cta-band { background:var(--ink); color:#fff; padding:54px 0; }
.cta-inner { display:flex; justify-content:space-between; align-items:center; gap:26px; }
.cta-inner h2 { font-family:'Playfair Display', serif; font-size:clamp(32px,4vw,54px); line-height:1.05; }
.cta-inner p { color:rgba(255,255,255,.68); line-height:1.7; margin-top:10px; max-width:620px; }
.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:32px; align-items:start; }
.contact-card { padding:28px; }
.contact-card h3 { font-family:'Playfair Display', serif; font-size:32px; margin-bottom:14px; }
.contact-line { display:flex; gap:12px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--line); color:var(--muted); }
.contact-line:last-child { border-bottom:0; }
.contact-line strong { display:block; color:var(--ink); margin-bottom:4px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field { margin-bottom:14px; }
.field.full { grid-column:1/-1; }
.field label { display:block; color:var(--muted); font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:1.4px; margin-bottom:8px; }
.field textarea { min-height:118px; resize:vertical; }
.success-box { display:none; text-align:center; padding:42px 20px; }
.success-box .big { font-size:54px; margin-bottom:12px; }
.success-box h3 { font-family:'Playfair Display', serif; font-size:32px; color:var(--green-dark); }
.footer { background:#102408; color:#fff; padding:56px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:34px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand-row { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-logo { height:44px; width:auto; filter:brightness(0) invert(1) opacity(.92); }
.footer h4, .footer h5 { font-family:'Playfair Display', serif; font-size:21px; margin-bottom:14px; }
.footer p, .footer a, .footer li { color:rgba(255,255,255,.58); font-size:14px; line-height:1.8; }
.footer ul { list-style:none; display:grid; gap:8px; }
.footer a:hover { color:var(--sun-gold); }
.footer-bottom { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; padding-top:24px; color:rgba(255,255,255,.35); font-size:12px; }
.chat-toggle { position:fixed; right:24px; bottom:24px; z-index:1200; border:0; width:64px; height:64px; border-radius:24px; background:var(--green-dark); color:#fff; font-size:27px; box-shadow:0 18px 45px rgba(23,43,15,.25); }
.chat-window { position:fixed; right:24px; bottom:100px; width:min(380px,calc(100vw - 32px)); background:#fff; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow); overflow:hidden; z-index:1201; display:none; }
.chat-window.open { display:block; }
.chat-head { background:var(--ink); color:#fff; padding:18px; display:flex; justify-content:space-between; gap:12px; align-items:center; }
.chat-head strong { display:block; }
.chat-head small { color:rgba(255,255,255,.6); }
.chat-close { background:transparent; border:0; color:#fff; font-size:22px; }
.chat-log { padding:18px; height:300px; overflow:auto; display:grid; gap:10px; background:var(--off-white); }
.msg { max-width:88%; padding:12px 13px; border-radius:16px; line-height:1.45; font-size:14px; }
.msg.bot { background:#fff; border:1px solid var(--line); }
.msg.user { background:var(--green-dark); color:#fff; justify-self:end; }
.chat-chips { display:flex; flex-wrap:wrap; gap:8px; padding:0 18px 14px; background:var(--off-white); }
.chat-chip { border:1px solid var(--line); background:#fff; border-radius:999px; padding:8px 10px; font-size:12px; font-weight:800; color:var(--green-dark); }
.chat-form { display:flex; border-top:1px solid var(--line); }
.chat-form input { flex:1; border:0; padding:15px; outline:none; }
.chat-form button { border:0; background:var(--green-dark); color:#fff; padding:0 18px; font-weight:900; }
.fade-in { opacity:0; transform:translateY(18px); transition:.6s ease; }
.fade-in.visible { opacity:1; transform:none; }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
@media (max-width: 980px) {
  .hero-grid, .finder-wrap, .product-detail-grid, .journey-shell, .contact-grid, .cta-inner { grid-template-columns:1fr; }
  .hero-card { min-height:500px; }
  .quick-actions, .stats-grid, .footer-grid { grid-template-columns:repeat(2,1fr); }
  .catalog-tools { grid-template-columns:1fr; }
  .check-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .page-shell { padding-top:70px; }
  .nav { height:70px; }
  .mobile-toggle { display:block; }
  .nav-links { position:absolute; left:5vw; right:5vw; top:82px; background:#fff; border:1px solid var(--line); border-radius:22px; padding:12px; display:none; flex-direction:column; align-items:stretch; box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { display:block; }
  .nav-logo-wrap { min-width:0; }
  .nav-brand-main { font-size:17px; }
  .hero-grid { padding:44px 0; gap:32px; }
  .hero-card { min-height:440px; border-radius:28px; }
  .brand-plate { padding:16px; }
  .brand-plate img { width:74px; }
  .brand-plate strong { font-size:22px; }
  .mockup-board { height:280px; }
  .mockup-box { left:0; width:210px; height:175px; }
  .mockup-label { right:0; top:72px; width:190px; height:148px; }
  .mockup-bag { left:84px; width:195px; height:175px; }
  .section { padding:68px 0; }
  .quick-section { padding:28px 0 62px; }
  .quick-actions, .stats-grid, .footer-grid, .form-grid, .spec-grid, .quote-controls { grid-template-columns:1fr; }
  .stat-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.08); }
  .section-title { font-size:40px; }
  .footer-bottom { flex-direction:column; }
}


/* Client feedback polish: spacing, real images, stronger detail layout */
.section { padding:112px 0; }
.section-alt { background:linear-gradient(180deg,#eef6e7 0%, #f8faf5 100%); }
.quick-section { padding:76px 0 116px; background:linear-gradient(180deg,#f8faf5 0%,#ffffff 52%,#f8faf5 100%); }
.stat-section { margin-bottom:0; }
.hero { min-height:auto; padding:38px 0 48px; }
.hero-grid { padding:86px 0 74px; gap:70px; }
.hero-photo-card { display:grid; grid-template-columns:1.15fr .85fr; gap:16px; min-height:560px; padding:18px; overflow:hidden; }
.hero-photo-card::before, .hero-photo-card::after { display:none; }
.hero-photo { position:relative; overflow:hidden; border-radius:28px; border:1px solid rgba(47,111,5,.14); background:#eef6e7; min-height:210px; }
.hero-photo-large { min-height:524px; }
.hero-photo img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.96) contrast(1.02); }
.hero-photo::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(23,43,15,.28)); pointer-events:none; }
.hero-photo-stack { display:grid; gap:16px; }
.hero-overlay-card { position:absolute; left:38px; right:38px; bottom:34px; z-index:4; background:rgba(255,255,255,.92); backdrop-filter:blur(14px); }
.hero-overlay-card strong { font-size:24px; }
.quick-card { min-height:205px; padding:34px; }
.quick-card h3 { font-size:28px; }
.product-grid { gap:30px; }
.product-card { border-radius:28px; }
.product-img { min-height:245px; }
.product-visual { background:#eef6e7; }
.product-visual.photo-visual { min-height:245px; overflow:hidden; border-radius:0; display:block; position:relative; }
.product-visual.photo-visual.detail { min-height:540px; border-radius:30px; border:1px solid var(--line); box-shadow:var(--shadow-soft); }
.visual-photo { width:100%; height:100%; min-height:inherit; object-fit:cover; display:block; transition:transform .45s ease; }
.product-card:hover .visual-photo { transform:scale(1.045); }
.visual-shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(23,43,15,.03) 0%, rgba(23,43,15,.28) 72%, rgba(23,43,15,.48) 100%); }
.visual-caption { position:absolute; left:22px; right:22px; bottom:20px; z-index:2; background:rgba(255,255,255,.93); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.6); border-radius:20px; padding:16px 18px; display:flex; gap:12px; align-items:center; box-shadow:0 18px 42px rgba(23,43,15,.16); }
.visual-caption span { width:34px; height:34px; border-radius:12px; background:var(--green-soft); display:grid; place-items:center; flex:0 0 auto; }
.visual-caption strong { color:var(--ink); font-size:17px; line-height:1.15; }
.product-visual.detail .visual-caption { left:28px; right:28px; bottom:26px; padding:20px 22px; }
.product-visual.detail .visual-caption strong { font-size:22px; }
.product-detail-section { padding-top:74px; }
.product-page-hero { padding-bottom:34px; }
.product-detail-grid { grid-template-columns:1fr; }
.detail-hero-panel { display:grid; grid-template-columns:minmax(360px,.92fr) minmax(420px,1.08fr); gap:34px; align-items:stretch; }
.detail-media-wrap { min-width:0; }
.detail-summary-card { background:#fff; border:1px solid var(--line); border-radius:30px; padding:34px; box-shadow:var(--shadow-soft); }
.detail-summary-card .spec-grid { margin-bottom:0; }
.detail-content-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,480px); gap:30px; align-items:start; margin-top:34px; }
.detail-copy-card { padding:28px 30px 32px; }
.detail-copy-card .tab-bar { margin-top:0; }
.quote-card.estimate-card { margin-top:0; padding:0; overflow:hidden; border-radius:30px; }
.quote-card-head { padding:28px 30px 0; }
.quote-card-head h3 { font-size:34px; line-height:1.05; margin:12px 0 10px; }
.quote-card-head p { color:var(--muted); line-height:1.68; }
.quote-controls { padding:0 30px; margin:22px 0 18px; }
.quote-controls label { display:grid; gap:8px; }
.quote-controls label span { font-size:11px; font-weight:900; letter-spacing:1.3px; text-transform:uppercase; color:var(--muted); }
.search-box, .select-box, .field input, .field select, .field textarea, .quote-controls select { appearance:none; -webkit-appearance:none; background-color:#fff; background-image:linear-gradient(45deg, transparent 50%, var(--green-dark) 50%), linear-gradient(135deg, var(--green-dark) 50%, transparent 50%); background-position:calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px); background-size:5px 5px,5px 5px; background-repeat:no-repeat; padding-right:42px; }
.field input, .field textarea, .search-box { background-image:none; padding-right:16px; }
.estimate { margin:0 30px 30px; background:linear-gradient(135deg,#17370c 0%,#2f6f05 100%); border:1px solid rgba(255,255,255,.12); border-radius:24px; padding:24px; display:grid; grid-template-columns:1fr auto; gap:20px; align-items:center; box-shadow:0 18px 42px rgba(23,43,15,.18); }
.estimate b { display:block; font-size:34px; line-height:1.1; margin:4px 0 6px; color:var(--sun-gold); }
.estimate small { text-transform:uppercase; letter-spacing:1.1px; font-size:11px; font-weight:900; color:rgba(255,255,255,.72); }
.estimate span { display:block; color:rgba(255,255,255,.68); font-size:13px; line-height:1.45; }
.estimate-cta { display:inline-flex; align-items:center; justify-content:center; white-space:nowrap; background:#fff; color:var(--green-dark); border-radius:999px; padding:14px 20px; font-weight:900; box-shadow:0 12px 26px rgba(0,0,0,.12); }
.estimate-cta:hover { transform:translateY(-2px); }
.gallery-switch { gap:12px; margin-top:16px; }
.gallery-switch button { background:rgba(255,255,255,.92); padding:14px 16px; }
.blog-visual { min-height:210px; overflow:hidden; display:block; }
.blog-visual img { width:100%; height:210px; object-fit:cover; display:block; transition:transform .45s ease; }
.blog-card:hover .blog-visual img { transform:scale(1.045); }
.blog-visual span { position:absolute; left:18px; bottom:18px; z-index:2; width:54px; height:54px; border-radius:18px; background:rgba(255,255,255,.92); display:grid; place-items:center; font-size:28px; box-shadow:0 16px 34px rgba(23,43,15,.15); }
.blog-visual::after { inset:0; width:auto; height:auto; border:0; border-radius:0; background:linear-gradient(180deg,transparent 45%,rgba(23,43,15,.34)); transform:none; }
.contact-card .field select { min-height:56px; font-size:16px; }

@media (max-width: 980px) {
  .hero-photo-card, .detail-hero-panel, .detail-content-grid { grid-template-columns:1fr; }
  .hero-photo-large { min-height:340px; }
  .hero-photo-card { min-height:auto; }
  .product-visual.photo-visual.detail { min-height:420px; }
  .estimate { grid-template-columns:1fr; }
  .estimate-cta { width:100%; }
}
@media (max-width: 760px) {
  .section { padding:78px 0; }
  .quick-section { padding:58px 0 82px; }
  .hero-grid { padding:56px 0 44px; }
  .hero-photo-card { padding:12px; border-radius:28px; }
  .hero-overlay-card { position:relative; left:auto; right:auto; bottom:auto; margin-top:-84px; margin-inline:14px; }
  .detail-summary-card, .detail-copy-card { padding:24px; border-radius:24px; }
  .quote-card-head { padding:24px 24px 0; }
  .quote-controls { padding:0 24px; grid-template-columns:1fr; }
  .estimate { margin:0 24px 24px; }
  .product-visual.photo-visual.detail { min-height:340px; }
}

/* Premium UX polish: cleaner imagery, no product text overlay, richer motion */
:root {
  --premium-shadow:0 26px 80px rgba(23,43,15,.13);
  --premium-shadow-hover:0 34px 90px rgba(23,43,15,.18);
}
.section { padding:112px 0; }
.section-alt { background:linear-gradient(180deg,#f3faef 0%, #eef6e7 100%); }
.quick-section { padding:72px 0 104px; }
.stat-section { margin-top:0; }
.hero-grid { padding:96px 0 86px; gap:78px; }
.section-sub { margin-bottom:60px; }

.product-grid { grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:34px; align-items:stretch; }
.product-card {
  border-radius:32px;
  border:1px solid rgba(47,111,5,.14);
  background:rgba(255,255,255,.94);
  box-shadow:0 18px 54px rgba(23,43,15,.08);
  overflow:hidden;
  position:relative;
}
.product-card::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(71,168,3,.20),rgba(246,184,0,.18));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.75;
}
.product-card:hover { transform:translateY(-8px); box-shadow:var(--premium-shadow-hover); }
.product-img {
  height:236px;
  min-height:236px;
  padding:12px;
  background:linear-gradient(135deg,#f9fff5,#edf7e7);
}
.product-visual.photo-visual {
  min-height:0;
  height:100%;
  border-radius:24px;
  overflow:hidden;
  background:#f2f7ef;
}
.product-visual.photo-visual.detail {
  min-height:560px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(47,111,5,.14);
  box-shadow:var(--premium-shadow);
}
.visual-photo {
  height:100%;
  min-height:0;
  width:100%;
  object-fit:cover;
  transform:scale(1.001);
  filter:saturate(1.02) contrast(1.04);
}
.product-card:hover .visual-photo { transform:scale(1.065); }
.visual-shade, .visual-caption { display:none !important; }
.product-body { padding:26px 26px 28px; }
.product-body h3 { font-size:28px; letter-spacing:-.7px; line-height:1.04; margin:16px 0 12px; }
.product-body p { font-size:15px; line-height:1.75; color:var(--muted); }
.product-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0 20px;
}
.product-meta span {
  border:1px solid var(--line);
  background:#f8faf5;
  color:var(--muted);
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:900;
}
.card-actions { margin-top:auto; }
.btn-primary, .btn-secondary, .estimate-cta { transition:transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease; }

.detail-hero-panel { grid-template-columns:minmax(420px,1.05fr) minmax(420px,.95fr); gap:42px; }
.detail-summary-card { padding:42px; border-radius:34px; box-shadow:var(--premium-shadow); }
.detail-content-grid { grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr); gap:34px; margin-top:42px; }
.detail-copy-card, .quote-card.estimate-card { border-radius:34px; box-shadow:var(--premium-shadow); }
.quote-card.estimate-card { background:linear-gradient(180deg,#fff,#fbfdf9); }
.estimate {
  margin:0 30px 30px;
  background:linear-gradient(135deg,#fff8df 0%,#ffffff 52%,#edf8e8 100%);
  color:var(--ink);
  border:1px solid rgba(47,111,5,.16);
  border-radius:28px;
  box-shadow:0 18px 44px rgba(23,43,15,.08);
}
.estimate small { color:var(--sun-amber); }
.estimate b { color:var(--green-dark); }
.estimate span { color:var(--muted); }
.estimate-cta { background:var(--green-dark); color:#fff; box-shadow:0 14px 32px rgba(47,111,5,.22); }
.estimate-cta:hover { background:var(--ink); }
.search-box, .select-box, .field input, .field select, .field textarea, .quote-controls select {
  border-radius:18px;
  border-color:rgba(47,111,5,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.blog-card { border-radius:32px; overflow:hidden; box-shadow:0 18px 54px rgba(23,43,15,.08); }
.blog-visual { min-height:224px; }
.blog-visual img { height:224px; filter:saturate(1.03) contrast(1.02); }
.blog-visual span { display:none; }
.blog-visual::after { background:linear-gradient(180deg,rgba(23,43,15,0) 50%,rgba(23,43,15,.14)); }

.hero-photo-card { border-radius:42px; box-shadow:var(--premium-shadow); }
.hero-photo { border-radius:30px; }
.hero-photo img { transform:scale(1.001); transition:transform .8s ease; }
.hero-photo-card:hover .hero-photo img { transform:scale(1.035); }
.hero-overlay-card { box-shadow:0 22px 58px rgba(23,43,15,.16); }

.section-reveal, .fade-in {
  opacity:0;
  transition:opacity .82s cubic-bezier(.22,1,.36,1), transform .82s cubic-bezier(.22,1,.36,1), box-shadow .24s ease;
  transition-delay:var(--reveal-delay,0ms);
}
.fade-in { transform:translateY(42px); }
.slide-up { transform:translateY(54px); }
.slide-from-left { transform:translateX(-54px); }
.slide-from-right { transform:translateX(54px); }
.section-reveal.visible, .fade-in.visible { opacity:1; transform:none; }
.product-grid .product-card:nth-child(3n+1) { transform:translateX(-34px); }
.product-grid .product-card:nth-child(3n+2) { transform:translateY(46px); }
.product-grid .product-card:nth-child(3n) { transform:translateX(34px); }
.product-grid .product-card.visible { transform:none; }
.product-grid .product-card.visible:hover { transform:translateY(-8px); }

@media (max-width: 980px) {
  .section { padding:88px 0; }
  .hero-grid { gap:48px; padding:70px 0; }
  .detail-hero-panel, .detail-content-grid { grid-template-columns:1fr; }
  .product-visual.photo-visual.detail { min-height:440px; }
  .product-grid .product-card:nth-child(n) { transform:translateY(42px); }
  .product-grid .product-card.visible { transform:none; }
}
@media (max-width: 760px) {
  .section { padding:74px 0; }
  .quick-section { padding:58px 0 78px; }
  .product-grid { gap:24px; }
  .product-img { height:220px; min-height:220px; }
  .product-body { padding:22px; }
  .product-body h3 { font-size:25px; }
  .hero-overlay-card { position:relative; left:auto; right:auto; bottom:auto; margin-top:14px; margin-inline:0; }
  .hero-photo-card { display:block; }
  .hero-photo-stack { display:none; }
  .product-visual.photo-visual.detail { min-height:340px; }
}


/* Category-first homepage and category landing pages */
.category-home-section {
  position:relative;
  overflow:hidden;
}
.category-home-section::before {
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  right:-180px;
  top:8%;
  border-radius:50%;
  background:radial-gradient(circle,rgba(246,184,0,.18),transparent 68%);
  pointer-events:none;
}
.category-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  align-items:stretch;
}
.category-card {
  position:relative;
  overflow:hidden;
  border-radius:34px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(47,111,5,.15);
  box-shadow:0 22px 70px rgba(23,43,15,.10);
  transition:transform .28s ease, box-shadow .28s ease;
}
.category-card:hover {
  transform:translateY(-10px);
  box-shadow:0 36px 95px rgba(23,43,15,.16);
}
.category-img {
  display:block;
  height:245px;
  padding:12px;
  background:linear-gradient(135deg,#f9fff5,#edf7e7);
}
.category-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:26px;
  transition:transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease;
  filter:saturate(1.03) contrast(1.03);
}
.category-card:hover .category-img img {
  transform:scale(1.055);
  filter:saturate(1.08) contrast(1.05);
}
.category-body {
  padding:28px;
  display:flex;
  flex-direction:column;
  min-height:340px;
}
.category-topline {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--sun-amber);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.35px;
  font-weight:900;
  margin-bottom:16px;
}
.category-icon {
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--green-soft);
  letter-spacing:0;
  font-size:23px;
}
.category-body h3 {
  font-family:'Playfair Display',serif;
  font-size:31px;
  line-height:1.03;
  letter-spacing:-.8px;
  margin-bottom:10px;
}
.category-subtitle {
  color:var(--green-dark)!important;
  font-weight:900;
  line-height:1.5!important;
  margin-bottom:12px;
}
.category-body p {
  color:var(--muted);
  line-height:1.72;
  font-size:15px;
}
.category-services {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:20px 0 24px;
}
.category-services span {
  border:1px solid rgba(47,111,5,.16);
  background:#f8faf5;
  color:var(--muted);
  border-radius:999px;
  padding:8px 11px;
  font-size:12px;
  font-weight:900;
}
.category-body .btn-primary {
  margin-top:auto;
  align-self:flex-start;
}
.category-page-intro {
  display:grid;
  grid-template-columns:minmax(320px,.85fr) minmax(0,1.15fr);
  gap:30px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(47,111,5,.15);
  border-radius:34px;
  padding:18px;
  margin-bottom:34px;
  box-shadow:0 22px 70px rgba(23,43,15,.09);
}
.category-page-intro img {
  width:100%;
  height:310px;
  object-fit:cover;
  border-radius:26px;
}
.category-page-intro > div {
  padding:18px 18px 18px 0;
}
.category-page-intro h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,3.4vw,48px);
  line-height:1.05;
  letter-spacing:-1px;
  margin-bottom:12px;
}
.category-page-intro p:not(.eyebrow) {
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}
.catalog-count {
  color:var(--muted);
  font-weight:900;
  margin:-12px 0 24px;
  text-align:center;
}
@media (min-width: 1120px) {
  .category-card:first-child { grid-column:span 2; }
  .category-card:first-child .category-img { height:300px; }
}
@media (max-width: 980px) {
  .category-page-intro { grid-template-columns:1fr; }
  .category-page-intro > div { padding:8px 10px 16px; }
}
@media (max-width: 760px) {
  .category-grid { grid-template-columns:1fr; gap:24px; }
  .category-img { height:220px; }
  .category-body { min-height:0; padding:24px; }
  .category-page-intro img { height:235px; }
}


/* Final brand-copy and premium typography polish */
html { text-rendering:optimizeLegibility; }
body {
  line-height:1.7;
  letter-spacing:-0.01em;
  -webkit-font-smoothing:antialiased;
  font-feature-settings:"kern" 1, "liga" 1;
}
.container { width:min(1220px, 90vw); }
.eyebrow {
  letter-spacing:4px;
  font-size:10.5px;
  line-height:1.4;
  color:var(--sun-amber);
}
.section-title {
  max-width:1050px;
  margin-left:auto;
  margin-right:auto;
  line-height:.98;
  letter-spacing:-2.4px;
}
.section-sub {
  text-align:center;
  max-width:760px;
  font-size:18px;
  line-height:1.86;
  letter-spacing:.01em;
  margin-left:auto;
  margin-right:auto;
  color:#496740;
}
.hero h1, .page-hero h1, .section-title, .category-body h3, .product-body h3, .journey-card h3, .quote-card-head h3, .cta-inner h2 {
  text-wrap:balance;
}
.hero h1 {
  letter-spacing:-3.4px;
  line-height:.92;
}
.hero-sub {
  max-width:650px;
  font-size:19px;
  line-height:1.86;
  color:#486640;
}
.trust-pill, .nav-links a, .badge, .chip, .category-topline, .stat-label {
  letter-spacing:.08em;
}
.quick-card h3 { letter-spacing:-.7px; }
.quick-card p {
  font-size:15.5px;
  line-height:1.78;
  color:#536f4a;
}
.category-home-section .section-title { max-width:1120px; }
.category-home-section .section-sub { max-width:820px; }
.category-card { background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.94)); }
.category-body h3 {
  font-size:33px;
  letter-spacing:-1.05px;
  line-height:1.02;
}
.category-subtitle {
  letter-spacing:-.01em;
  color:#2f6f05!important;
}
.category-body p {
  line-height:1.84;
  color:#4f6b46;
}
.category-services span {
  letter-spacing:.02em;
}
.finder-card h3, .finder-result h3, .contact-card h3, .blog-body h3 {
  letter-spacing:-.8px;
  text-wrap:balance;
}
.option-btn span small, .helper, .finder-result p, .journey-card p, .tab-panel, .contact-line, .blog-body p, .page-hero p, .category-page-intro p:not(.eyebrow) {
  line-height:1.82;
}
.page-hero p {
  font-size:18px;
  color:#4b6742;
}
.product-body p {
  line-height:1.82;
  color:#4f6b46;
}
.product-info .lead {
  line-height:1.86;
  color:#4b6742;
}
.detail-summary-card, .detail-copy-card, .quote-card.estimate-card, .category-card, .quick-card, .blog-card, .contact-card {
  backdrop-filter:saturate(1.1) blur(0px);
}
.cta-inner p {
  font-size:17px;
  line-height:1.82;
}
.footer p, .footer a, .footer li {
  line-height:1.86;
}

@media (max-width:760px) {
  .section-title { letter-spacing:-1.5px; line-height:1.04; }
  .hero h1 { letter-spacing:-2px; }
  .section-sub { font-size:16.5px; line-height:1.75; }
}

/* V2 client catalog + trust bar refinements */
.nav { height:112px; display:block; }
.trust-topbar { height:34px; background:#102408; color:#fff; border-bottom:1px solid rgba(255,255,255,.08); }
.trust-topbar-inner { min-height:34px; display:flex; align-items:center; justify-content:center; gap:12px; text-align:center; font-size:11px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.76); }
.nav-main { height:78px; background:rgba(248,250,245,.97); backdrop-filter:blur(16px); }
.nav-main .nav-inner { height:78px; }
.page-shell { padding-top:112px; }
.hero { min-height:calc(100vh - 112px); }
.nav-brand-main { font-size:20px; }
.nav-brand-sub { letter-spacing:1.7px; }
.category-card:first-child { grid-column:auto; }
.category-card:first-child .category-img { height:245px; }
.category-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.product-visual.photo-visual { background:#eef6e7; overflow:hidden; }
.product-visual.photo-visual img { width:100%; height:100%; object-fit:cover; display:block; }
.product-img .product-visual { height:220px; border-radius:0; }
.detail-media-wrap .product-visual.detail { min-height:520px; border-radius:34px; }
.blog-visual img { width:100%; height:100%; object-fit:cover; }
.blog-visual span { position:relative; z-index:2; width:64px; height:64px; border-radius:22px; background:rgba(255,255,255,.9); display:grid; place-items:center; box-shadow:0 14px 32px rgba(23,43,15,.14); }
.chat-quote-action { padding:0 18px 14px; background:var(--off-white); }
.chat-quote-action .btn-primary { width:100%; padding:12px 18px; }
.chat-chips { display:none!important; }
.footer-grid { grid-template-columns:1.35fr .85fr .85fr 1.15fr; }
.footer li { word-break:break-word; }
.section-title, .hero h1, .page-hero h1 { letter-spacing:-0.055em; }
.section-sub, .hero-sub, .page-hero p { line-height:1.82; }
.estimate-cta { background:#fff; color:var(--green-dark); border-radius:999px; padding:13px 20px; font-weight:900; white-space:nowrap; }
.estimate span { color:rgba(255,255,255,.68); display:block; margin-top:4px; line-height:1.45; }
@media (max-width:980px) {
  .category-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:760px) {
  .nav { height:112px; }
  .page-shell { padding-top:112px; }
  .trust-topbar-inner { font-size:9px; letter-spacing:.08em; line-height:1.35; flex-wrap:wrap; padding:4px 0; }
  .topbar-separator { display:none; }
  .nav-links { top:122px; }
  .footer-grid { grid-template-columns:1fr; }
  .detail-media-wrap .product-visual.detail { min-height:340px; }
}


/* V3 stock-photo polish */
.hero-photo, .category-img, .product-visual.photo-visual, .blog-visual {
  background: linear-gradient(135deg, #eef6e7, #fff8df);
}
.hero-photo img, .category-img img, .visual-photo, .blog-visual img {
  filter: saturate(1.05) contrast(1.03) brightness(.99);
}
.category-card .category-img::after,
.product-visual.photo-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,43,15,0) 55%, rgba(23,43,15,.08));
  pointer-events: none;
}
.category-img, .product-visual.photo-visual { position: relative; }

/* AI chatbot states */
.msg.loading {
  color: var(--muted);
  font-style: italic;
  opacity: .78;
}
.chat-form input:disabled,
.chat-form button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* Vercel-ready AI chatbot polish */
.catalog-list-section { padding-top:64px; }
.chat-toggle {
  width:auto;
  min-width:72px;
  height:66px;
  padding:0 15px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, #2f6f05, #102408);
  box-shadow:0 22px 60px rgba(23,43,15,.28);
  overflow:hidden;
}
.chat-toggle::before {
  content:'';
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle, rgba(255,255,255,.22), transparent 48%);
  opacity:.65;
}
.chat-toggle-icon {
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  color:#f6d15c;
  font-size:24px;
  line-height:1;
}
.chat-toggle-bubble {
  position:relative;
  z-index:2;
  padding-right:2px;
  font-size:12px;
  font-weight:950;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:#fff;
}
.chat-window {
  width:min(430px,calc(100vw - 28px));
  bottom:104px;
  border-radius:32px;
  border:1px solid rgba(47,111,5,.14);
  box-shadow:0 34px 110px rgba(16,36,8,.28);
  background:#fff;
}
.chat-window.open { animation:chatPanelIn .22s ease both; }
@keyframes chatPanelIn { from { opacity:0; transform:translateY(12px) scale(.98); } to { opacity:1; transform:none; } }
.chat-head {
  padding:18px 18px;
  background:linear-gradient(135deg, #102408, #193a0d 62%, #2f6f05);
  align-items:center;
}
.chat-avatar {
  width:46px;
  height:46px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#2f6f05;
  font-family:'Playfair Display', serif;
  font-weight:950;
  font-size:24px;
  box-shadow:0 14px 36px rgba(0,0,0,.18);
}
.chat-head > div:nth-child(2) { margin-right:auto; }
.chat-head strong { font-size:16px; letter-spacing:-.01em; }
.chat-head small { display:flex; align-items:center; gap:7px; margin-top:3px; color:rgba(255,255,255,.72); font-weight:700; }
.online-dot { width:7px; height:7px; border-radius:50%; background:#78ff8d; box-shadow:0 0 0 4px rgba(120,255,141,.14); }
.chat-close { width:36px; height:36px; border-radius:14px; background:rgba(255,255,255,.1); display:grid; place-items:center; transition:.2s ease; }
.chat-close:hover { background:rgba(255,255,255,.18); transform:rotate(6deg); }
.chat-log {
  height:380px;
  padding:18px;
  gap:12px;
  align-content:start;
  background:
    radial-gradient(circle at top right, rgba(246,184,0,.10), transparent 28%),
    linear-gradient(180deg,#fbfdf7,#f3f8ee);
}
.msg-row { display:flex; align-items:flex-end; }
.msg-row.user { justify-content:flex-end; }
.msg {
  max-width:86%;
  padding:12px 14px;
  font-size:14px;
  line-height:1.58;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(23,43,15,.06);
}
.msg a { color:#2f6f05; font-weight:950; text-decoration:underline; text-underline-offset:3px; }
.msg.bot { background:#fff; border:1px solid rgba(47,111,5,.12); color:#31442c; border-bottom-left-radius:7px; }
.msg.user { background:linear-gradient(135deg,#2f6f05,#193a0d); color:#fff; border-bottom-right-radius:7px; }
.chat-welcome-card {
  max-width:100%;
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(47,111,5,.12);
  box-shadow:0 16px 40px rgba(23,43,15,.08);
}
.chat-welcome-card .eyebrow { margin-bottom:9px; font-size:10px; }
.chat-welcome-card h4 {
  font-family:'Playfair Display', serif;
  font-size:25px;
  line-height:1.08;
  letter-spacing:-.04em;
  color:var(--green-dark);
  margin-bottom:9px;
}
.chat-welcome-card p:not(.eyebrow) { color:var(--muted); line-height:1.65; font-size:14px; }
.chat-quote-link {
  display:inline-flex;
  margin-top:14px;
  border-radius:999px;
  background:var(--green-dark);
  color:#fff;
  font-weight:950;
  font-size:13px;
  padding:11px 15px;
}
.chat-helper {
  padding:11px 18px;
  background:#fff;
  border-top:1px solid rgba(47,111,5,.08);
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}
.chat-form {
  align-items:flex-end;
  gap:10px;
  padding:12px;
  background:#fff;
  border-top:1px solid rgba(47,111,5,.1);
}
.chat-form textarea {
  flex:1;
  width:100%;
  max-height:92px;
  min-height:48px;
  resize:none;
  border:1px solid rgba(47,111,5,.14);
  border-radius:18px;
  padding:14px 15px;
  outline:none;
  color:var(--ink);
  font:inherit;
  line-height:1.45;
  background:#fbfdf7;
}
.chat-form textarea:focus { border-color:rgba(47,111,5,.42); box-shadow:0 0 0 4px rgba(47,111,5,.08); background:#fff; }
.chat-form button {
  width:48px;
  height:48px;
  border-radius:17px;
  padding:0;
  display:grid;
  place-items:center;
  background:var(--green-dark);
  color:#fff;
  font-size:17px;
  font-weight:950;
  transition:.2s ease;
}
.chat-form button:hover { transform:translateY(-1px); background:#102408; }
.typing-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:#9bb091; margin:0 2px; animation:typingPulse .95s infinite ease-in-out; }
.typing-dot:nth-child(2) { animation-delay:.14s; }
.typing-dot:nth-child(3) { animation-delay:.28s; }
@keyframes typingPulse { 0%,80%,100% { opacity:.35; transform:translateY(0); } 40% { opacity:1; transform:translateY(-3px); } }
@media (max-width:760px) {
  .chat-toggle { right:16px; bottom:16px; height:60px; min-width:60px; padding:0 11px; }
  .chat-toggle-bubble { display:none; }
  .chat-window { right:14px; bottom:86px; border-radius:26px; }
  .chat-log { height:340px; }
}

/* Final alignment + responsive pass */
.quick-section { display: none !important; }

/* Keep all cards in each row aligned, with CTAs locked to the bottom. */
.category-grid,
.product-grid,
.blog-grid,
.quick-actions,
.stats-grid {
  align-items: stretch;
}

.category-card,
.product-card,
.blog-card,
.contact-card,
.quick-card,
.journey-card,
.spec-card {
  min-width: 0;
}

.category-card,
.product-card,
.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-img,
.product-img,
.blog-visual {
  flex: 0 0 auto;
}

.category-body,
.product-body,
.blog-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.category-body h3,
.product-body h3,
.blog-body h3 {
  min-height: 2.05em;
}

.category-subtitle {
  min-height: 3em;
}

.category-body > p:not(.category-subtitle) {
  min-height: 5.5em;
}

.category-services,
.product-meta {
  min-height: 86px;
  align-content: flex-start;
}

.card-actions,
.category-body .btn-primary,
.blog-meta {
  margin-top: auto;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.card-actions .btn-primary,
.card-actions .btn-secondary {
  min-height: 46px;
}

/* Safer image rendering: no distortion, no accidental blank collapse. */
.category-img,
.product-img,
.hero-photo,
.blog-visual,
.product-visual.photo-visual {
  overflow: hidden;
}

.category-img img,
.product-visual.photo-visual img,
.hero-photo img,
.blog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Catalog controls should not overflow on smaller screens. */
.catalog-tools {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: stretch;
}

.search-box,
.select-box {
  min-width: 0;
  height: 58px;
}

.category-strip {
  row-gap: 12px;
}

/* Product detail layout alignment. */
.detail-hero-panel,
.detail-content-grid,
.contact-grid,
.journey-shell,
.hero-grid {
  min-width: 0;
}

.detail-summary-card,
.detail-copy-card,
.quote-card.estimate-card,
.contact-card {
  height: fit-content;
}

.spec-grid {
  align-items: stretch;
}

.spec-card {
  height: 100%;
}

/* Trust bar stays stable instead of wrapping over the navigation. */
.trust-topbar-inner {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-topbar-inner span {
  min-width: 0;
}

/* Tablet */
@media (max-width: 1100px) {
  .container { width: min(1120px, 92vw); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { gap: 46px; }
  .category-body > p:not(.category-subtitle) { min-height: 0; }
}

@media (max-width: 980px) {
  .container { width: min(900px, 92vw); }
  .hero-grid,
  .detail-hero-panel,
  .detail-content-grid,
  .journey-shell,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr !important;
  }
  .catalog-tools {
    grid-template-columns: 1fr;
  }
  .category-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-services,
  .product-meta {
    min-height: auto;
  }
  .category-body h3,
  .product-body h3,
  .blog-body h3,
  .category-subtitle {
    min-height: 0;
  }
  .hero-photo-card {
    grid-template-columns: 1fr !important;
  }
  .hero-photo-stack {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 760px) {
  body { font-size: 15px; }
  .container { width: min(100% - 32px, 560px); }
  .nav-logo-img { height: 42px; }
  .nav-brand-main { font-size: 15px; }
  .nav-brand-sub { display: none; }
  .trust-topbar-inner {
    justify-content: flex-start;
    font-size: 8.5px;
    letter-spacing: .06em;
  }
  .nav-links {
    max-height: calc(100vh - 136px);
    overflow: auto;
  }
  .hero-grid { padding: 42px 0 36px; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-sub { font-size: 16px; line-height: 1.72; }
  .hero-actions,
  .trust-row,
  .card-actions {
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .card-actions .btn-primary,
  .card-actions .btn-secondary {
    width: 100%;
  }
  .stats-grid,
  .category-grid,
  .product-grid,
  .blog-grid,
  .footer-grid,
  .form-grid,
  .spec-grid,
  .quote-controls,
  .check-grid,
  .quick-actions {
    grid-template-columns: 1fr !important;
  }
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: clamp(38px, 13vw, 54px); }
  .page-hero p { font-size: 16px; }
  .section { padding: 58px 0; }
  .section-title { font-size: clamp(34px, 11vw, 46px); }
  .section-sub { margin-bottom: 34px; }
  .category-img { height: 205px; padding: 10px; }
  .product-img { height: 210px; min-height: 210px; padding: 10px; }
  .category-body,
  .product-body,
  .blog-body,
  .contact-card,
  .detail-summary-card,
  .detail-copy-card {
    padding: 22px;
  }
  .category-card,
  .product-card,
  .blog-card {
    border-radius: 26px;
  }
  .category-services span,
  .product-meta span,
  .chip {
    font-size: 11.5px;
  }
  .catalog-count { text-align: left; }
  .product-visual.photo-visual.detail { min-height: 300px; }
  .estimate {
    margin: 0 18px 18px;
    padding: 20px;
  }
  .quote-card-head { padding: 22px 22px 0; }
  .quote-controls { padding: 0 22px; }
  .cta-inner { text-align: left; }
  .chat-window {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 86px;
  }
}

@media (max-width: 430px) {
  .container { width: min(100% - 24px, 420px); }
  .nav-brand-main { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .btn-primary,
  .btn-secondary {
    padding-left: 18px;
    padding-right: 18px;
  }
  .category-img,
  .product-img { height: 190px; min-height: 190px; }
  .chat-log { height: 310px; }
}

/* Final product image polish: product-detail media should feel intentional, not like a small image floating in a large box. */
.detail-media-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-media-wrap #mainVisual {
  width: 100%;
}

.detail-media-wrap .product-visual.photo-visual.detail {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(360px, 44vw, 560px);
  min-height: 0 !important;
  aspect-ratio: 4 / 3;
  padding: 0 !important;
  border-radius: 34px;
  background: #f8faf5;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 5, 0.14);
  box-shadow: 0 28px 76px rgba(23, 43, 15, 0.12);
}

.detail-media-wrap .product-visual.photo-visual.detail::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(23,43,15,0.08)),
    radial-gradient(circle at 15% 15%, rgba(246,184,0,0.08), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(71,168,3,0.12), transparent 36%);
}

.detail-media-wrap .product-visual.photo-visual.detail .visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
  transition: transform .8s ease, filter .8s ease;
}

.detail-media-wrap .product-visual.photo-visual.detail:hover .visual-photo {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.04);
}

/* Make gallery buttons align neatly below the visual on all product pages. */
.gallery-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.gallery-switch button {
  min-height: 52px;
  text-align: center;
  border-radius: 18px;
  display: grid;
  place-items: center;
}

/* Product cards should not add internal image padding on mobile; it creates uneven image boxes. */
.product-img {
  padding: 0 !important;
}

.product-img .product-visual,
.product-img .product-visual.photo-visual {
  height: 100% !important;
}

@media (max-width: 980px) {
  .detail-media-wrap .product-visual.photo-visual.detail {
    height: clamp(330px, 66vw, 520px);
    border-radius: 30px;
  }
}

@media (max-width: 760px) {
  .detail-media-wrap .product-visual.photo-visual.detail {
    height: clamp(280px, 78vw, 420px);
    border-radius: 26px;
  }
  .gallery-switch {
    grid-template-columns: 1fr;
  }
  .gallery-switch button {
    min-height: 46px;
    text-align: left;
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .detail-media-wrap .product-visual.photo-visual.detail {
    height: 270px;
  }
}
