:root{
  --accent:#6f8f6b;
  --accent-2:#8a6a45;
  --gold: #b4945c;
  --gold-light: #d4b87a;
  --gold-soft: rgba(180, 148, 92, 0.12);
  --dark: #1e1c19;
  --dark-2: #171512;
  --gray: #6b6a67;
  --gray-light: #e8e6e1;
  --line: rgba(30, 28, 25, 0.08);
  --bg: #fefcf8;
  --bg-soft: #faf6ee;
  --white: #ffffff;
  --max: 1400px;
  --shadow-soft: 0 18px 50px rgba(30, 28, 25, 0.06);
  --shadow-card: 0 24px 60px rgba(30, 28, 25, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at top left, rgba(180, 148, 92, 0.06), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, #fefcf8 35%, #f9f5ee 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 82px 0; }
.section-header { max-width: 760px; margin-bottom: 54px; }
.section-tag { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-size: 11px; margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.25rem, 4vw, 3.7rem); line-height: 1.03; font-weight: 500; margin-bottom: 16px; }
.section-desc { color: var(--gray); line-height: 1.85; font-size: 1rem; }
.btn-primary, .btn-outline, .btn-soft, .filter-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 28px;
  border-radius: 0; letter-spacing: 2.2px; font-size: 11px; text-transform: uppercase; transition: all .5s cubic-bezier(.19,1,.22,1); cursor: pointer;
}
.btn-primary { background: var(--dark); color: var(--white); border: 1px solid var(--dark); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold); border-color: var(--gold); }
.btn-outline { border: 1px solid rgba(30, 28, 25, 0.16); background: transparent; }
.btn-outline:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-soft { background: transparent; color: var(--gold); border: 1px solid rgba(180, 148, 92, 0.22); }
.btn-soft:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pill { display: inline-flex; padding: 9px 15px; background: rgba(255,255,255,0.76); color: var(--gray); font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; border: 1px solid rgba(30, 28, 25, 0.08); }
.topbar { padding: 12px 0; background: #151310; color: rgba(255,255,255,0.75); font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.nav { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(14px); background: rgba(254,252,248,0.88); border-bottom: 1px solid var(--line); }
.nav-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; letter-spacing: 2px; }
.logo span { color: var(--gold); }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a { font-size: 12px; letter-spacing: 1.7px; text-transform: uppercase; color: var(--dark); position: relative; }
.nav-menu a::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 0; height: 1px; background: var(--gold); transition: width .45s cubic-bezier(.19,1,.22,1); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 14px; align-items: center; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }
.mobile-menu { position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); height: 100vh; background: var(--bg); transform: translateX(102%); transition: .4s ease; z-index: 2000; padding: 28px; box-shadow: -18px 0 48px rgba(0,0,0,0.14); }
.mobile-menu.active { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.icon-btn { background: none; border: none; font-size: 26px; cursor: pointer; }
.mobile-menu ul { display: grid; gap: 18px; }
.mobile-menu a { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1500; opacity: 0; visibility: hidden; transition: .3s ease; }
.menu-overlay.active { opacity: 1; visibility: visible; }
.hero { padding: 82px 0 112px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 6vw, 5.4rem); line-height: .94; font-weight: 500; margin-bottom: 22px; }
.hero-copy p { font-size: 1.03rem; line-height: 1.95; color: var(--gray); max-width: 630px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.meta-card { padding: 22px 20px; background: rgba(255,255,255,0.82); border: 1px solid rgba(30,28,25,0.06); box-shadow: var(--shadow-soft); }
.meta-card strong { display: block; font-size: 1.25rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.meta-card span { color: var(--gray); font-size: 13px; line-height: 1.75; }
.hero-visual { position: relative; min-height: 700px; }
.hero-visual::before { content: ''; position: absolute; inset: 24px -18px -24px 24px; border: 1px solid rgba(180,148,92,0.18); pointer-events: none; }
.hero-main-img { width: 100%; height: 700px; object-fit: contain; object-position: center; background: linear-gradient(180deg,#f8f4ec,#fffdfa); box-shadow: var(--shadow-card); padding: 24px; }
.float-card { position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(18px); border: 1px solid rgba(30,28,25,0.07); padding: 20px 22px; box-shadow: var(--shadow-soft); }
.float-card.top { top: 28px; left: -18px; max-width: 290px; }
.float-card.bottom { right: -18px; bottom: 28px; max-width: 290px; }
.float-card h3 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.float-card p { color: var(--gray); line-height: 1.75; font-size: 14px; }
.breadcrumbs { color: var(--gray); font-size: 13px; display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; letter-spacing: .4px; }
.page-hero { padding: 68px 0 52px; }
.page-banner { background: linear-gradient(135deg, rgba(180,148,92,0.08), rgba(255,255,255,0.96)); border: 1px solid rgba(30,28,25,0.06); padding: 58px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: rgba(255,255,255,0.88); border: 1px solid rgba(30,28,25,0.06); padding: 30px; box-shadow: var(--shadow-soft); }
.card h3, .card h4 { margin-bottom: 12px; }
.card p { color: var(--gray); line-height: 1.85; }
.category-card, .product-card, .service-card, .feature-card { position: relative; overflow: hidden; background: rgba(255,255,255,0.92); border: 1px solid rgba(30,28,25,0.06); box-shadow: var(--shadow-soft); transition: transform .55s cubic-bezier(.19,1,.22,1), box-shadow .55s cubic-bezier(.19,1,.22,1), border-color .55s cubic-bezier(.19,1,.22,1); }
.category-card::after, .product-card::after, .service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(30,28,25,.03) 100%); pointer-events: none; }
.category-card img, .product-card img, .service-card img { width: 100%; height: 340px; object-fit: contain; object-position: center; background: linear-gradient(180deg,#f6f1e8,#fffdfa); padding: 20px; transition: transform .8s cubic-bezier(.19,1,.22,1); }
.category-content, .product-content, .service-content { padding: 26px; }
.category-content h3, .product-content h3, .service-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; margin-bottom: 10px; transition: transform .55s cubic-bezier(.19,1,.22,1), color .55s cubic-bezier(.19,1,.22,1); }
.category-content p, .product-content p, .service-content p { color: var(--gray); line-height: 1.8; }
.category-meta, .product-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; align-items: center; flex-wrap: wrap; }
.price-badge { display: inline-flex; align-items: center; padding: 10px 14px; background: var(--gold-soft); color: var(--gold); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; border: 1px solid rgba(180,148,92,0.12); }
.product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.product-specs span { font-size: 11px; letter-spacing: 1px; padding: 8px 12px; background: var(--bg-soft); color: var(--gray); border: 1px solid rgba(30,28,25,0.05); }
.product-card:hover, .category-card:hover, .service-card:hover, .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(180,148,92,0.18); }
.product-card:hover img, .category-card:hover img, .service-card:hover img { transform: scale(1.035); }
.product-card:hover h3, .category-card:hover h3, .service-card:hover h3 { transform: translateY(-3px); color: #2d2924; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { padding: 30px; background: rgba(255,255,255,0.8); border: 1px solid rgba(30,28,25,0.06); box-shadow: var(--shadow-soft); }
.process-step .num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: rgba(180,148,92,0.72); line-height: 1; margin-bottom: 18px; }
.process-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 500; margin-bottom: 8px; }
.process-step p { color: var(--gray); line-height: 1.8; }
.cta-band { background: linear-gradient(135deg, #181613 0%, #11100e 100%); color: white; padding: 48px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: center; box-shadow: var(--shadow-card); }
.cta-band p { color: rgba(255,255,255,0.72); line-height: 1.85; }
.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; }
.contact-panel { padding: 34px; background: #171512; color: white; box-shadow: var(--shadow-card); }
.contact-panel p { color: rgba(255,255,255,0.74); line-height: 1.85; }
.contact-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-item { padding: 17px 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.contact-item strong { display: block; margin-bottom: 5px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.8px; color: var(--gold-light); }
.contact-form { padding: 34px; background: rgba(255,255,255,0.92); border: 1px solid rgba(30,28,25,0.06); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input, textarea, select { width: 100%; min-height: 54px; border-radius: 0; border: 1px solid rgba(30,28,25,0.08); background: white; padding: 0 18px; font-family: inherit; color: var(--dark); }
textarea { padding: 18px; min-height: 150px; resize: vertical; }
.input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(180,148,92,0.65); }
.notice { margin-top: 16px; padding: 16px 18px; background: rgba(180,148,92,0.1); color: var(--gray); font-size: 14px; line-height: 1.8; border-left: 2px solid rgba(180,148,92,0.55); }
.table-feel { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.82); overflow: hidden; box-shadow: var(--shadow-soft); }
.table-feel th, .table-feel td { text-align: left; padding: 19px 20px; border-bottom: 1px solid rgba(30,28,25,0.06); }
.table-feel th { font-size: 11px; text-transform: uppercase; letter-spacing: 1.8px; color: var(--gold); }
.table-feel td { color: var(--gray); line-height: 1.7; }
.footer { padding: 82px 0 24px; background: #11100e; color: rgba(255,255,255,0.74); margin-top: 94px; }
.footer-logo { color:white; display:inline-block; margin-bottom:12px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .9fr 1fr; gap: 28px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer h4 { color: white; font-size: 12px; margin-bottom: 16px; letter-spacing: 1.8px; text-transform: uppercase; }
.footer p, .footer a { color: rgba(255,255,255,0.66); line-height: 1.95; font-size: 14px; }
.footer a:hover { color: var(--gold-light); }
.copyright { text-align: center; padding-top: 22px; font-size: 12px; letter-spacing: .4px; }
.copyright a { color: rgba(255,255,255,.88); text-decoration: none; position: relative; }
.copyright a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: currentColor; transition: width .28s ease; }
.copyright a:hover::after { width: 100%; }
.fade-up { opacity: 0; transform: translateY(28px); transition: .9s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.product-toolbar { display:flex; flex-wrap:wrap; gap:10px; margin:0 0 28px; }
.filter-btn { min-height:42px; padding:0 18px; background:rgba(255,255,255,.82); border:1px solid rgba(30,28,25,.08); color:var(--dark); }
.filter-btn.active, .filter-btn:hover { background:var(--dark); color:#fff; border-color:var(--dark); }
.product-section { margin-top: 52px; }
.product-section:first-of-type { margin-top: 0; }
.product-group-head { display:flex; justify-content:space-between; gap:16px; align-items:end; margin-bottom:24px; padding-bottom:14px; border-bottom:1px solid rgba(30,28,25,.08); }
.product-group-head p { max-width:780px; color:var(--gray); line-height:1.8; }
.stat-strip { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; margin-top:32px; }
.stat-box { padding:20px; background:rgba(255,255,255,.86); border:1px solid rgba(30,28,25,.06); box-shadow:var(--shadow-soft); }
.stat-box strong { display:block; font-family:'Cormorant Garamond', serif; font-size:1.9rem; color:var(--gold); margin-bottom:4px; }
.dual-visual { display:grid; grid-template-columns:1fr 1fr; gap:26px; align-items:stretch; }
.visual-panel { background:rgba(255,255,255,.9); border:1px solid rgba(30,28,25,.06); box-shadow:var(--shadow-soft); overflow:hidden; }
.visual-panel img { width:100%; height:420px; object-fit:contain; object-position:center; background:linear-gradient(180deg,#f5efe5,#fffdfa); padding:26px; }
.visual-copy { padding:26px; }
.visual-copy h3 { font-family:'Cormorant Garamond', serif; font-size:2rem; font-weight:500; margin-bottom:10px; }
.visual-copy p { color:var(--gray); line-height:1.85; }
.highlight-list { display:grid; gap:12px; margin-top:18px; }
.highlight-list li { padding:14px 16px; background:var(--bg-soft); border:1px solid rgba(30,28,25,.05); color:var(--gray); }
@media (max-width: 1100px) {
  .nav-menu, .nav-cta .btn-primary { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .grid-2, .contact-layout, .cta-band, .footer-grid, .dual-visual { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .process-grid, .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-visual, .hero-main-img { min-height: auto; height: 580px; }
  .hero-visual::before { inset: 16px -12px -16px 16px; }
  .float-card.top { left: 16px; top: 16px; }
  .float-card.bottom { right: 16px; bottom: 16px; }
}
@media (max-width: 768px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .section { padding: 74px 0; }
  .section-sm { padding: 64px 0; }
  .topbar-inner { justify-content: center; text-align: center; }
  .nav-inner { min-height: 76px; }
  .hero { padding-top: 42px; }
  .hero-meta, .grid-3, .grid-4, .process-grid, .form-grid, .stat-strip { grid-template-columns: 1fr; }
  .page-banner { padding: 36px 24px; }
  .card, .contact-panel, .contact-form, .process-step, .cta-band { padding: 28px 24px; }
  .category-card img, .product-card img, .service-card img { height: 260px; }
  .hero-main-img { height: 430px; }
  .hero-visual::before { display: none; }
  .float-card { position: static; margin-top: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-group-head { display:block; }
}



/* === Mobile upgrade === */
.mobile-cta-bar{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:1100;
  display:none; grid-template-columns:1fr 1fr; gap:10px;
  background:rgba(255,253,250,.92); backdrop-filter:blur(16px);
  border:1px solid rgba(30,28,25,.08); box-shadow:0 18px 40px rgba(30,28,25,.14);
  padding:10px; border-radius:18px;
}
.mobile-cta-bar .btn-primary,
.mobile-cta-bar .btn-soft{
  min-height:54px; padding:0 16px; font-size:11px; letter-spacing:1.8px; width:100%;
}
.mobile-viber-fab{
  position:fixed; right:14px; bottom:92px; width:56px; height:56px; border-radius:50%;
  display:none; align-items:center; justify-content:center; z-index:1090;
  background:#7360f2; color:#fff; box-shadow:0 16px 34px rgba(115,96,242,.35); font-size:24px;
}
.product-toolbar{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:42px;
}
.filter-btn.active{ background:var(--dark); color:var(--white); border-color:var(--dark); }
.product-card .product-link{ display:block; color:inherit; }
.product-card .product-link h3{ margin-bottom:10px; }
.product-card .product-link:hover h3{ color:var(--gold); }
.product-card .product-image-link{ display:block; }
.product-card .product-image-link img{ transition:transform .8s cubic-bezier(.19,1,.22,1); }
.product-card .product-image-link:hover img{ transform:scale(1.03); }

.product-detail-hero{
  display:grid; grid-template-columns:1.02fr .98fr; gap:34px; align-items:start;
}
.product-gallery-main{
  background:rgba(255,255,255,.92); border:1px solid rgba(30,28,25,.06); box-shadow:var(--shadow-soft);
  padding:22px;
}
.product-gallery-main img{
  width:100%; height:580px; object-fit:contain; object-position:center;
  background:linear-gradient(180deg,#f6f1e8,#fffdfa); padding:24px;
}
.product-detail-copy{
  background:rgba(255,255,255,.9); border:1px solid rgba(30,28,25,.06); box-shadow:var(--shadow-soft);
  padding:34px;
}
.product-kicker{ color:var(--gold); text-transform:uppercase; letter-spacing:3px; font-size:11px; margin-bottom:14px; }
.product-detail-copy h1{
  font-family:'Cormorant Garamond', serif; font-size:clamp(2.6rem,4vw,4.5rem); line-height:.95; font-weight:500; margin-bottom:18px;
}
.product-lead{ color:var(--gray); line-height:1.9; font-size:1rem; margin-bottom:22px; }
.product-detail-meta{
  display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0;
}
.product-detail-meta .meta-card{ padding:18px; }
.product-detail-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.related-card{
  background:rgba(255,255,255,.92); border:1px solid rgba(30,28,25,.06); box-shadow:var(--shadow-soft); overflow:hidden;
}
.related-card img{ width:100%; height:230px; object-fit:contain; background:linear-gradient(180deg,#f6f1e8,#fffdfa); padding:18px; }
.related-card .inner{ padding:18px; }
.related-card h3{ font-family:'Cormorant Garamond', serif; font-size:1.5rem; font-weight:500; margin-bottom:10px; }

@media (max-width: 768px){
  body{ padding-bottom:92px; }
  .mobile-cta-bar, .mobile-viber-fab{ display:grid; }
  .mobile-viber-fab{ display:flex; }
  .topbar{ display:none; }
  .hero{ padding:24px 0 66px; }
  .hero-copy h1{ font-size:clamp(2.6rem,12vw,3.5rem); margin-bottom:16px; }
  .hero-copy p{ font-size:.98rem; line-height:1.8; }
  .hero-actions{ display:grid; grid-template-columns:1fr; }
  .hero-actions .btn-primary, .hero-actions .btn-outline{ width:100%; }
  .hero-meta{ gap:12px; margin-top:26px; }
  .meta-card{ padding:18px 16px; }
  .page-hero{ padding:24px 0 24px; }
  .page-banner{ padding:28px 18px; }
  .section-title{ font-size:clamp(2rem,8.5vw,2.6rem); line-height:1.02; }
  .section-desc{ font-size:.95rem; line-height:1.8; }
  .product-toolbar{
    flex-wrap:nowrap; overflow:auto; padding-bottom:6px; margin-bottom:30px;
    scrollbar-width:none; -ms-overflow-style:none;
  }
  .product-toolbar::-webkit-scrollbar{ display:none; }
  .filter-btn{ white-space:nowrap; min-height:44px; padding:0 18px; }
  .product-group-head p{ margin-top:10px; font-size:.95rem; line-height:1.75; }
  .product-card{ border-radius:18px; overflow:hidden; }
  .product-card img{ height:220px; padding:14px; }
  .product-content{ padding:18px; }
  .product-content h3{ font-size:1.55rem; margin-bottom:8px; }
  .product-content p{ font-size:.95rem; line-height:1.7; }
  .product-specs{ gap:6px; margin:12px 0 16px; }
  .product-specs span{ font-size:10px; padding:7px 10px; }
  .product-meta{ display:grid; grid-template-columns:1fr; }
  .product-meta .btn-soft, .product-meta .price-badge{ width:100%; justify-content:center; min-height:46px; }
  .contact-layout{ gap:18px; }
  .contact-panel, .contact-form{ border-radius:18px; }
  .product-detail-hero{ grid-template-columns:1fr; gap:18px; }
  .product-gallery-main{ padding:14px; border-radius:18px; }
  .product-gallery-main img{ height:320px; padding:16px; }
  .product-detail-copy{ padding:22px 18px; border-radius:18px; }
  .product-detail-meta{ grid-template-columns:1fr; }
  .product-detail-actions{ display:grid; grid-template-columns:1fr; }
  .product-detail-actions .btn-primary, .product-detail-actions .btn-soft{ width:100%; }
  .related-grid{ grid-template-columns:1fr; }
  .related-card{ border-radius:18px; }
  .related-card img{ height:200px; }
  .mobile-menu{ width:min(92vw,380px); }
  .mobile-menu ul{ gap:14px; }
  .mobile-menu a{ display:block; padding:10px 0; font-size:15px; }
}


/* GREEN ACCENT IMPROVEMENTS */
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  opacity: 0.9;
}

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

.logo span {
  color: var(--accent);
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--accent);
}




/* GREEN + BROWN BRAND BALANCE */
.btn-primary:hover {
  background: var(--accent-2) !important;
  border-color: var(--accent-2) !important;
  color: #fff !important;
}

.btn-soft:hover,
.btn-outline:hover,
.filter-btn:hover {
  border-color: var(--accent-2) !important;
  color: var(--accent-2) !important;
  background: rgba(138, 106, 69, 0.04) !important;
}

.section-tag,
.breadcrumbs span:last-child,
.product-kicker,
.product-specs span,
.price-badge {
  color: var(--accent-2) !important;
  border-color: rgba(138, 106, 69, 0.18) !important;
}

h1 strong,
h2 strong,
.card h3,
.product-content h3 a:hover,
.related-card h3 a:hover {
  color: rgba(138, 106, 69, 0.86) !important;
}

.meta-card strong,
.feature-list strong,
.footer h4 {
  color: rgba(138, 106, 69, 0.82) !important;
}

.product-card:hover,
.related-card:hover,
.card:hover {
  border-color: rgba(138, 106, 69, 0.15) !important;
  box-shadow: 0 16px 38px rgba(138, 106, 69, 0.06) !important;
}

.nav-menu a:hover,
.footer a:hover,
.breadcrumbs a:hover {
  color: var(--accent-2) !important;
}

.topbar {
  border-bottom: 1px solid rgba(138, 106, 69, 0.06) !important;
}

.footer {
  border-top: 1px solid rgba(138, 106, 69, 0.06) !important;
}

.product-group-head,
.section-header {
  position: relative;
}

.product-group-head:after,
.section-header:after {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(to right, rgba(107, 78, 46, 0), rgba(138, 106, 69, 0.30), rgba(107, 78, 46, 0));
}

.logo img {
  display: block;
}


/* FINAL POLISH */
.card, .product-card, .related-card {
  transition: all 0.35s ease;
}

.card:hover, .product-card:hover, .related-card:hover {
  transform: translateY(-4px);
}

.btn-primary {
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

h1, h2, h3 {
  letter-spacing: 0.3px;
}




/* === Scroll motion upgrade === */
.js-reveal,
.js-reveal-soft,
.js-reveal-stagger {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition:
    opacity 1s cubic-bezier(.19,1,.22,1),
    transform 1.1s cubic-bezier(.19,1,.22,1),
    filter 1.1s cubic-bezier(.19,1,.22,1);
}
.js-reveal-soft {
  transform: translate3d(0, 22px, 0);
  filter: blur(3px);
}
.js-reveal.is-visible,
.js-reveal-soft.is-visible,
.js-reveal-stagger.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.js-stagger-parent > * {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  filter: blur(4px);
  transition:
    opacity .9s cubic-bezier(.19,1,.22,1),
    transform 1s cubic-bezier(.19,1,.22,1),
    filter 1s cubic-bezier(.19,1,.22,1);
}
.js-stagger-parent.is-visible > * {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}
.js-stagger-parent.is-visible > *:nth-child(1) { transition-delay: .04s; }
.js-stagger-parent.is-visible > *:nth-child(2) { transition-delay: .10s; }
.js-stagger-parent.is-visible > *:nth-child(3) { transition-delay: .16s; }
.js-stagger-parent.is-visible > *:nth-child(4) { transition-delay: .22s; }
.js-stagger-parent.is-visible > *:nth-child(5) { transition-delay: .28s; }
.js-stagger-parent.is-visible > *:nth-child(6) { transition-delay: .34s; }

[data-parallax] {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform .12s linear;
}

.page-banner,
.hero-copy,
.hero-visual,
.visual-panel,
.content-panel,
.product-gallery-main,
.product-detail-copy {
  transform-origin: center center;
}

.hero-visual {
  perspective: 1200px;
}
.hero-visual .hero-main-img {
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}
.hero-visual:hover .hero-main-img {
  transform: scale(1.02);
}

.float-card,
.meta-card,
.card,
.product-card,
.related-card,
.contact-panel,
.contact-form,
.visual-panel,
.content-panel {
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal-soft,
  .js-reveal-stagger,
  .js-stagger-parent > *,
  [data-parallax] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}



/* === Hero mouse depth === */
.hero {
  overflow: hidden;
}
.hero-copy,
.hero-visual,
.hero-main-img,
.float-card {
  will-change: transform;
}
.hero-copy {
  transition: transform .25s ease-out;
}
.hero-visual {
  position: relative;
  transition: transform .28s ease-out;
  transform-style: preserve-3d;
}
.hero-main-img {
  transition: transform .35s ease-out;
}
.float-card {
  transition: transform .32s ease-out, box-shadow .32s ease-out;
}
.hero-visual:hover .float-card {
  box-shadow: 0 18px 42px rgba(30, 28, 25, 0.12);
}

@media (max-width: 1024px), (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .hero-main-img,
  .float-card {
    transform: none !important;
    transition: none !important;
  }
}

.back-to-top {
 position: fixed;
 bottom: 20px;
 right: 20px;
 background: #2f5d50;
 color: #fff;
 width: 44px;
 height: 44px;
 border-radius: 50%;
 display: none;
 z-index: 999;
}


/* Home extra sections */
.home-process-grid,
.home-testimonials-grid {
  display: grid;
  gap: 22px;
}
.home-process-grid { grid-template-columns: repeat(4, 1fr); }
.home-testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.testimonials-marquee::before,
.testimonials-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 2;
}
.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(248,245,239,.96), rgba(248,245,239,0));
}
.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(248,245,239,.96), rgba(248,245,239,0));
}
.testimonials-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonialsScroll 48s linear infinite;
  will-change: transform;
}
.testimonial-slide {
  width: min(360px, calc(100vw - 44px));
  min-width: min(360px, calc(100vw - 44px));
  min-height: 100%;
  flex: 0 0 auto;
}

.home-extra-section .card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-extra-section .card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.home-extra-section .card p {
  color: var(--gray);
  line-height: 1.75;
}
.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,184,122,0.10), transparent 46%, rgba(47,93,80,0.06));
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testimonial-rating .star {
  font-size: 15px;
  line-height: 1;
  color: rgba(212,184,122,0.28);
  transform-origin: center;
  animation: testimonialStarPulse 3.6s ease-in-out infinite;
}
.testimonial-rating .star:nth-child(2){ animation-delay: .08s; }
.testimonial-rating .star:nth-child(3){ animation-delay: .16s; }
.testimonial-rating .star:nth-child(4){ animation-delay: .24s; }
.testimonial-rating .star:nth-child(5){ animation-delay: .32s; }
.testimonial-rating .star.filled {
  color: #d4b87a;
  text-shadow: 0 0 18px rgba(212,184,122,0.18);
}
.testimonial-card p {
  font-size: 15px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.testimonial-avatar {
  --avatar-gradient: linear-gradient(135deg, #d4b87a, #8f7550 55%, #2f5d50);
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--avatar-gradient);
  box-shadow: 0 14px 30px rgba(32,25,16,0.18), inset 0 1px 0 rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.52);
}
.testimonial-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  opacity: .55;
  z-index: -1;
}

.testimonial-person-text {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(30,28,25,0.08);
}
.testimonial-meta strong {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: .95;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #181512;
}
.testimonial-meta span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(61,58,54,0.72);
  background: rgba(47,93,80,0.07);
  border: 1px solid rgba(47,93,80,0.08);
}
@keyframes testimonialStarPulse {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0 rgba(212,184,122,0)); }
  50% { transform: translateY(-1px) scale(1.06); filter: drop-shadow(0 0 6px rgba(212,184,122,0.25)); }
}
@keyframes testimonialsScroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(calc(-50% - 11px),0,0); }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(30, 28, 25, 0.12);
  background: rgba(111, 143, 107, 0.96);
  color: #fff;
  cursor: pointer;
  z-index: 1200;
  display: none;
  font-size: 18px;
  box-shadow: 0 14px 36px rgba(30, 28, 25, 0.16);
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.back-to-top:hover {
  transform: translateY(-3px);
  background: rgba(95, 123, 92, 0.98);
}

@media (max-width: 1024px) {
  .home-process-grid { grid-template-columns: repeat(2, 1fr); }
  .home-testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-track { animation-duration: 42s; }
}
@media (max-width: 768px) {
  .home-process-grid { grid-template-columns: 1fr; }
  .testimonials-marquee::before,
  .testimonials-marquee::after { width: 28px; }
  .testimonials-track { gap: 16px; animation-duration: 34s; }
  .testimonial-slide { width: min(300px, calc(100vw - 32px)); min-width: min(300px, calc(100vw - 32px)); }
  .back-to-top { right: 16px; bottom: 92px; }
}



/* === Hero slogan + animation === */
.hero-slogan-wrap{
  overflow:hidden;
  margin: 18px 0 10px;
}
.hero-slogan{
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(138,106,69,.95);
  transform: translate3d(0, 120%, 0);
  opacity: 0;
}
.hero-slogan.is-in{
  animation: heroSloganReveal 1.05s cubic-bezier(.19,1,.22,1) forwards;
}
@keyframes heroSloganReveal{
  0%{ transform: translate3d(0, 120%, 0); opacity:0; filter: blur(8px);}
  100%{ transform: translate3d(0, 0, 0); opacity:1; filter: blur(0);}
}
.hero-main-heading{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 5.2vw, 5.6rem);
  line-height: .94;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 12.5ch;
  white-space: normal;
}
.hero-main-desc{
  font-size: 1.03rem;
  line-height: 1.95;
  color: var(--gray);
  max-width: 630px;
}
.hero-copy .pill{
  margin-bottom: 0;
}
.hero-copy{
  position: relative;
}
.hero-copy > *{
  position: relative;
  z-index: 2;
}

/* === Safe modular progress back-to-top === */
.back-to-top-progress-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border: none;
  padding: 0;
  background: transparent;
  display: none;
  z-index: 9999;
  cursor: pointer;
}
.back-to-top-progress-svg{
  width: 60px;
  height: 60px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 10px 24px rgba(30,28,25,.16));
}
.back-to-top-progress-track{
  fill: rgba(254,252,248,.95);
  stroke: rgba(30,28,25,.10);
  stroke-width: 2;
}
.back-to-top-progress-bar{
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
}
.back-to-top-progress-arrow{
  position:absolute;
  inset:0;
  width:44px;
  height:44px;
  margin:auto;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent);
  color:#fff;
  font-size:18px;
  box-shadow:0 12px 28px rgba(30,28,25,.18);
  transition:transform .25s ease, background .25s ease;
}
.back-to-top-progress-btn:hover .back-to-top-progress-arrow{
  transform: translateY(-2px);
  background:#5f7b5c;
}
@media (max-width: 768px){
  .hero-slogan{
    font-size: .92rem;
    letter-spacing: 1.2px;
  }
  .hero-main-heading{
    font-size: clamp(2.9rem, 13vw, 4.2rem);
    max-width: none;
    letter-spacing: -.6px;
  }
  .back-to-top-progress-btn{
    right: 16px;
    bottom: 92px;
  }
}



@media (max-width: 768px){
  .hero-main-heading br{
    display: none;
  }
}


/* Force 2-line hero heading on desktop */
.hero-copy .hero-main-heading{
  max-width: 12.5ch !important;
}
.hero-copy .hero-main-heading br{
  display: block !important;
}
@media (max-width: 1100px){
  .hero-copy .hero-main-heading{
    max-width: 11.8ch !important;
    font-size: clamp(3.4rem, 7vw, 4.6rem) !important;
  }
}
@media (max-width: 768px){
  .hero-copy .hero-main-heading{
    max-width: none !important;
    font-size: clamp(2.9rem, 13vw, 4rem) !important;
  }
  .hero-copy .hero-main-heading br{
    display: none !important;
  }
}


/* === Hero heading final polish === */
.hero-copy .hero-main-heading{
  max-width: none !important;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-copy .hero-main-heading span{
  display: block;
  white-space: nowrap;
}
@media (max-width: 768px){
  .hero-copy .hero-main-heading{
    font-size: clamp(2.15rem, 8.9vw, 3.2rem) !important;
    line-height: .96 !important;
    letter-spacing: -.35px !important;
  }
  .hero-copy .hero-main-heading span{
    white-space: nowrap;
  }
}
@media (max-width: 390px){
  .hero-copy .hero-main-heading{
    font-size: clamp(1.95rem, 8.2vw, 2.6rem) !important;
  }
}


/* === Responsive final polish v2 === */
html, body {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.hero-copy,
.section-header,
.card,
.product-content,
.category-content,
.service-content,
.visual-copy,
.contact-panel,
.contact-form,
.page-banner,
.float-card,
.meta-card,
.notice,
.highlight-list li,
.footer p,
.footer a,
.product-group-head p {
  overflow-wrap: anywhere;
}

.hero-main-heading span,
.section-title,
.category-content h3,
.product-content h3,
.service-content h3,
.visual-copy h3,
.process-step h3,
.product-detail-copy h1,
.related-card h3 {
  overflow-wrap: normal;
  word-break: normal;
}

.logo img {
  height: 38px;
  width: auto;
}

.mobile-menu .logo img {
  height: 34px !important;
}

@media (max-width: 1100px) {
  .nav-inner {
    min-height: 78px;
    gap: 16px;
  }

  .logo img {
    height: 34px !important;
  }

  .hero {
    padding: 54px 0 82px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-copy p,
  .hero-main-desc {
    max-width: 100%;
  }

  .float-card {
    max-width: min(280px, calc(100% - 32px));
  }

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

  .page-banner {
    padding: 42px 34px;
  }

  .cta-band {
    padding: 34px;
  }

  .cta-band > div:last-child {
    width: 100%;
  }

  .cta-band > div:last-child .btn-primary,
  .cta-band > div:last-child .btn-outline {
    min-width: 220px;
  }

  .category-card img,
  .product-card img,
  .service-card img {
    height: 300px;
  }

  .footer {
    margin-top: 72px;
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-safe-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  body {
    padding-bottom: calc(var(--mobile-safe-bottom) + 84px);
  }

  body.has-mobile-cta {
    padding-bottom: calc(var(--mobile-safe-bottom) + 108px);
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    backdrop-filter: blur(10px);
  }

  .nav-inner {
    min-height: 72px;
  }

  .logo img {
    height: 30px !important;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    width: min(92vw, 340px);
    padding: 22px 18px 24px;
  }

  .mobile-head {
    margin-bottom: 18px;
  }

  .mobile-menu ul {
    gap: 6px;
  }

  .mobile-menu a {
    font-size: 13px;
    letter-spacing: 1.3px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 28, 25, 0.06);
  }

  .hero {
    padding: 18px 0 54px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: auto;
  }

  .hero-main-img {
    height: min(68vw, 390px);
    padding: 14px;
  }

  .hero-copy .pill {
    margin-bottom: 10px;
  }

  .hero-copy .hero-main-heading {
    margin-bottom: 14px;
  }

  .hero-main-desc,
  .hero-copy p {
    font-size: .96rem;
    line-height: 1.72;
  }

  .hero-actions,
  .product-detail-actions,
  .hero-meta,
  .grid-3,
  .grid-4,
  .process-grid,
  .form-grid,
  .stat-strip,
  .footer-grid,
  .dual-visual,
  .related-grid {
    gap: 14px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .cta-band .btn-primary,
  .cta-band .btn-outline,
  .category-meta .btn-soft,
  .product-meta .btn-soft,
  .product-detail-actions .btn-primary,
  .product-detail-actions .btn-soft {
    width: 100%;
  }

  .hero-meta {
    margin-top: 20px;
  }

  .meta-card,
  .card,
  .contact-panel,
  .contact-form,
  .process-step,
  .cta-band,
  .product-detail-copy,
  .product-gallery-main,
  .related-card,
  .visual-panel {
    border-radius: 18px;
  }

  .meta-card {
    padding: 16px 14px;
  }

  .float-card {
    position: static;
    max-width: 100%;
    margin-top: 10px;
    padding: 16px 16px;
  }

  .float-card h3 {
    margin-bottom: 6px;
  }

  .section {
    padding: 58px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

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

  .section-tag {
    letter-spacing: 2.2px;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    margin-bottom: 12px;
  }

  .page-hero {
    padding: 18px 0 18px;
  }

  .page-banner {
    padding: 24px 16px;
  }

  .breadcrumbs {
    gap: 6px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .cta-band {
    padding: 24px 18px;
  }

  .cta-band > div:last-child {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .category-card,
  .product-card,
  .service-card,
  .feature-card {
    border-radius: 18px;
  }

  .category-card img,
  .product-card img,
  .service-card img {
    height: 220px;
    padding: 14px;
  }

  .category-content,
  .product-content,
  .service-content,
  .visual-copy {
    padding: 18px;
  }

  .category-content h3,
  .product-content h3,
  .service-content h3,
  .visual-copy h3,
  .process-step h3,
  .related-card h3 {
    font-size: 1.45rem;
    line-height: 1.02;
  }

  .category-content p,
  .product-content p,
  .service-content p,
  .visual-copy p,
  .process-step p,
  .contact-panel p,
  .contact-form p,
  .footer p,
  .footer a {
    font-size: .94rem;
    line-height: 1.7;
  }

  .product-specs span,
  .price-badge {
    font-size: 10px;
    letter-spacing: .9px;
  }

  .product-toolbar {
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 2px;
  }

  .filter-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 1.25px;
  }

  .product-group-head {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .product-group-head:after,
  .section-header:after {
    width: 78px;
    margin-top: 10px;
  }

  .product-detail-copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
    line-height: .96;
  }

  .product-lead {
    font-size: .96rem;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .product-detail-meta {
    margin: 18px 0;
  }

  .product-gallery-main img {
    height: min(72vw, 320px);
  }

  .related-card img {
    height: 190px;
  }

  .contact-layout {
    gap: 14px;
  }

  .contact-list {
    gap: 12px;
    margin-top: 18px;
  }

  .contact-item {
    padding: 14px;
  }

  .input,
  textarea,
  select {
    min-height: 50px;
    padding: 0 14px;
    font-size: 16px;
  }

  textarea {
    padding: 14px;
    min-height: 132px;
  }

  .footer {
    margin-top: 58px;
    padding: 54px 0 calc(var(--mobile-safe-bottom) + 20px);
  }

  .copyright {
    padding-top: 18px;
    line-height: 1.65;
  }

  .mobile-cta-bar {
    left: 10px;
    right: 10px;
    bottom: var(--mobile-safe-bottom);
    border-radius: 16px;
    padding: 8px;
    gap: 8px;
  }

  .mobile-cta-bar .btn-primary,
  .mobile-cta-bar .btn-soft,
  .mobile-cta-bar .btn-outline {
    min-height: 50px;
    font-size: 10px;
    letter-spacing: 1.3px;
    padding: 0 12px;
  }

  .mobile-viber-fab {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: calc(var(--mobile-safe-bottom) + 74px);
    font-size: 22px;
  }

  .back-to-top-progress-btn {
    right: 12px;
    bottom: calc(var(--mobile-safe-bottom) + 74px);
    width: 54px;
    height: 54px;
  }

  body.has-mobile-cta .back-to-top-progress-btn {
    bottom: calc(var(--mobile-safe-bottom) + 138px);
  }

  body.has-mobile-cta .mobile-viber-fab {
    bottom: calc(var(--mobile-safe-bottom) + 74px);
  }

  .back-to-top-progress-svg {
    width: 54px;
    height: 54px;
  }

  .back-to-top-progress-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero-main-img {
    height: min(72vw, 320px);
  }

  .hero-copy .hero-main-heading {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem) !important;
  }

  .category-card img,
  .product-card img,
  .service-card img {
    height: 200px;
  }

  .category-content,
  .product-content,
  .service-content,
  .visual-copy,
  .card,
  .contact-panel,
  .contact-form,
  .process-step,
  .cta-band,
  .product-detail-copy {
    padding: 16px;
  }

  .section {
    padding: 50px 0;
  }

  .footer {
    padding-top: 48px;
  }
}


/* SEO content + FAQ */
.seo-copy-band{padding-top:28px;}
.seo-copy-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:start;}
.seo-copy-grid .card p + p{margin-top:12px;}
.faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.faq-item{padding:22px 22px 18px;}
.faq-item h3{margin-bottom:10px;font-size:1.1rem;}
.faq-item p{margin:0;color:var(--text-soft);}
@media (max-width: 900px){.seo-copy-grid,.faq-grid{grid-template-columns:1fr;}}


.testimonials-marquee:hover .testimonials-track,
.testimonials-marquee:focus-within .testimonials-track {
  animation-play-state: paused;
}
.testimonial-card {
  cursor: pointer;
}
.testimonial-card:focus-visible {
  outline: 2px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}
.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.testimonial-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.testimonial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,10,18,.74);
  backdrop-filter: blur(8px);
}
.testimonial-modal-dialog {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  padding: 28px 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(23,29,41,.98), rgba(14,18,28,.96));
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  transform: translateY(10px) scale(.98);
  transition: transform .28s ease;
}
.testimonial-modal.is-open .testimonial-modal-dialog {
  transform: translateY(0) scale(1);
}
.testimonial-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.testimonial-modal-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testimonial-modal-rating .star {
  font-size: 18px;
  color: #f5b301;
  text-shadow: 0 0 14px rgba(245,179,1,.22);
}
.testimonial-modal-text {
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.8;
  color: rgba(255,255,255,.92);
}
.testimonial-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  color: rgba(255,255,255,.76);
}
.testimonial-modal-meta .testimonial-avatar {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,0.16);
}
.testimonial-modal-meta .testimonial-person {
  gap: 14px;
}
.testimonial-modal-meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: .95;
  color: #fff;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .testimonial-modal-dialog {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }
  .testimonial-modal-text {
    font-size: 1rem;
    line-height: 1.72;
  }
}


/* === V5 products + trust strip upgrade === */
.trust-strip-wrap{ padding-top:10px; }
.trust-strip{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px; padding:22px 24px;
  background:
    radial-gradient(circle at top left, rgba(186,149,91,.14), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,248,243,.95));
  border-radius:24px; overflow:hidden;
}
.trust-item{
  position:relative; padding:14px 18px; border-radius:18px;
  background:rgba(255,255,255,.72); border:1px solid rgba(138,106,69,.10);
  box-shadow:0 12px 26px rgba(30,28,25,.04);
}
.trust-item::after{
  content:''; position:absolute; inset:auto 18px 0; height:1px;
  background:linear-gradient(90deg, rgba(138,106,69,0), rgba(138,106,69,.30), rgba(138,106,69,0));
}
.trust-item strong{
  display:block; font-size:clamp(1.25rem,2vw,1.8rem); letter-spacing:.3px;
  color:#2c261f; margin-bottom:5px;
}
.trust-item span{ color:#6f655b; font-size:.95rem; line-height:1.5; }

.product-card{
  isolation:isolate;
}
.product-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,.52) 50%, transparent 58%, transparent 100%);
  transform:translateX(-120%); transition:transform .95s cubic-bezier(.19,1,.22,1);
  pointer-events:none; z-index:2;
}
.product-card:hover::before{ transform:translateX(120%); }
.product-card .product-image-link{
  position:relative; overflow:hidden;
}
.product-card .product-image-link::after{
  content:''; position:absolute; inset:auto 0 0; height:55%;
  background:linear-gradient(180deg, rgba(13,11,9,0) 0%, rgba(13,11,9,.09) 100%);
  opacity:.8; pointer-events:none;
}
.product-badge-row{
  position:absolute; left:16px; top:16px; right:16px; z-index:3;
  display:flex; justify-content:space-between; gap:10px; pointer-events:none;
}
.product-badge, .product-badge-secondary{
  display:inline-flex; align-items:center; gap:8px; min-height:32px;
  padding:0 12px; border-radius:999px; font-size:10px; letter-spacing:1.4px; text-transform:uppercase;
  font-weight:700; backdrop-filter:blur(8px);
}
.product-badge{
  color:#fff; background:linear-gradient(135deg, #111 0%, rgba(138,106,69,.92) 100%);
  box-shadow:0 10px 28px rgba(17,17,17,.18);
}
.product-badge-secondary{
  color:#5c4630; background:rgba(255,248,236,.9); border:1px solid rgba(138,106,69,.16);
}
.product-hover-panel{
  position:absolute; left:16px; right:16px; bottom:16px; z-index:3;
  display:flex; gap:10px; opacity:0; transform:translateY(12px);
  transition:opacity .45s ease, transform .55s cubic-bezier(.19,1,.22,1);
}
.product-card:hover .product-hover-panel,
.product-card:focus-within .product-hover-panel{
  opacity:1; transform:translateY(0);
}
.product-hover-panel .btn-soft, .product-hover-panel .btn-outline{
  flex:1; justify-content:center; min-height:42px; padding:0 14px;
  background:rgba(255,255,255,.92); backdrop-filter:blur(10px);
}
.product-content{ position:relative; z-index:3; }
.product-content p{
  min-height:54px;
}
.product-seo-line{
  margin:0 0 14px; color:#7a6c60; font-size:.9rem; line-height:1.65;
}
.product-meta{ align-items:center; }
.product-card:hover .price-badge{ transform:translateY(-1px); }
.filter-btn{
  transition:transform .25s ease, background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.filter-btn:hover{ transform:translateY(-2px); box-shadow:0 10px 20px rgba(30,28,25,.06); }

.product-quick-modal{
  position:fixed; inset:0; z-index:1200; display:none;
}
.product-quick-modal.is-open{ display:block; }
.product-quick-backdrop{
  position:absolute; inset:0; background:rgba(17,17,17,.56); backdrop-filter:blur(6px);
}
.product-quick-dialog{
  position:relative; width:min(1040px, calc(100vw - 28px)); max-height:min(88vh, 940px); overflow:auto;
  margin:6vh auto 0; border-radius:28px; background:#fffdfa; box-shadow:0 30px 90px rgba(0,0,0,.2);
}
.product-quick-close{
  position:absolute; top:16px; right:16px; width:44px; height:44px; border:none; border-radius:50%;
  background:rgba(17,17,17,.06); color:#111; font-size:28px; cursor:pointer; z-index:5;
}
.product-quick-grid{
  display:grid; grid-template-columns:1.02fr .98fr; gap:0;
}
.product-quick-visual{
  background:linear-gradient(180deg,#f6f1e8,#fffdfa); min-height:100%; display:flex; align-items:center; justify-content:center;
  padding:34px;
}
.product-quick-visual img{
  width:100%; max-height:560px; object-fit:contain;
}
.product-quick-copy{ padding:42px 38px; }
.product-quick-kicker{
  color:var(--accent-2); text-transform:uppercase; letter-spacing:2.3px; font-size:11px; margin-bottom:14px;
}
.product-quick-copy h2{
  font-family:'Cormorant Garamond', serif; font-size:clamp(2.2rem,4vw,3.6rem); line-height:.95; margin-bottom:16px;
}
.product-quick-copy p{ color:#675d54; line-height:1.8; }
.product-quick-specs{
  display:flex; gap:8px; flex-wrap:wrap; margin:22px 0 18px;
}
.product-quick-specs span{
  display:inline-flex; min-height:34px; align-items:center; padding:0 12px; border-radius:999px;
  background:rgba(255,248,236,.9); border:1px solid rgba(138,106,69,.14); color:var(--accent-2); font-size:11px; letter-spacing:1.2px; text-transform:uppercase;
}
.product-quick-seo{
  padding:16px 18px; border-radius:18px; background:rgba(250,245,238,.9); border:1px solid rgba(138,106,69,.10);
  margin-bottom:20px;
}
.product-quick-actions{ display:flex; gap:12px; flex-wrap:wrap; }

@media (max-width: 900px){
  .trust-strip{ grid-template-columns:1fr; gap:12px; padding:18px; }
  .product-hover-panel{ position:static; opacity:1; transform:none; padding:0 18px 18px; }
  .product-badge-row{ left:12px; top:12px; right:12px; }
  .product-quick-dialog{ margin:3vh auto 0; border-radius:22px; }
  .product-quick-grid{ grid-template-columns:1fr; }
  .product-quick-visual{ padding:18px; }
  .product-quick-visual img{ max-height:300px; }
  .product-quick-copy{ padding:24px 18px 22px; }
  .product-quick-actions{ display:grid; grid-template-columns:1fr; }
}

.form-note{margin-top:14px;font-size:.95rem;line-height:1.6;color:rgba(17,17,17,.72)}
.form-status{font-size:.96rem;line-height:1.5;min-height:24px;color:rgba(17,17,17,.72)}
.form-status.loading{color:#7a6440}
.form-status.success{color:#1f7a48}
.form-status.error{color:#b42318}
.contact-form button[disabled]{opacity:.75;cursor:not-allowed;transform:none!important}


/* Product card cleanup */
.product-meta{justify-content:flex-start;}
.product-meta .price-badge{min-height:42px;}


/* === FINAL HERO FIX / MODESTA-LIKE BALANCE === */
body{
  font-family:'Inter',sans-serif;
}
.logo,
.section-title,
.category-content h3,
.product-content h3,
.service-content h3,
.process-step h3,
.meta-card strong,
.hero-copy h1,
.hero-main-heading{
  font-family:'Sora',sans-serif !important;
}

.hero{
  padding: 72px 0 96px;
}
.hero-grid{
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: 44px;
  align-items: center;
}
.hero-copy{
  max-width: 650px;
  min-width: 0;
  position: relative;
  z-index: 3;
}
.hero-copy .pill{
  margin-bottom: 18px;
}
.hero-copy .hero-main-heading{
  font-family:'Sora',sans-serif !important;
  font-size: clamp(3.45rem, 4.7vw, 4.95rem) !important;
  line-height: .92 !important;
  letter-spacing: -2.6px !important;
  font-weight: 700 !important;
  max-width: 9.4ch !important;
  margin: 0 0 24px !important;
  text-wrap: unset !important;
}
.hero-copy .hero-main-heading span{
  display: block;
  white-space: normal !important;
}
.hero-main-desc,
.hero-copy p{
  max-width: 560px !important;
  font-size: 1.04rem;
  line-height: 1.82;
}
.hero-actions{
  margin-top: 28px;
}
.hero-meta{
  margin-top: 34px;
}
.hero-visual{
  min-width: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before{
  inset: 22px 0 -22px 22px;
}
.hero-main-img{
  height: 620px;
  padding: 18px;
}
.float-card{
  border-radius: 24px;
}
.float-card.top{
  top: 18px;
  left: 16px;
  max-width: 260px;
}
.float-card.bottom{
  right: 16px;
  bottom: 18px;
  max-width: 260px;
}

@media (max-width: 1260px){
  .hero-grid{
    grid-template-columns: minmax(0, .98fr) minmax(390px, 1.02fr);
    gap: 30px;
  }
  .hero-copy .hero-main-heading{
    font-size: clamp(3rem, 4.15vw, 4.1rem) !important;
    max-width: 9.5ch !important;
    letter-spacing: -2px !important;
  }
  .hero-main-desc,
  .hero-copy p{
    max-width: 520px !important;
  }
  .hero-visual{
    min-height: 560px;
  }
  .hero-main-img{
    height: 560px;
  }
}

@media (max-width: 980px){
  .hero{
    padding: 32px 0 60px;
  }
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-copy{
    order: 1 !important;
    max-width: 100%;
  }
  .hero-visual{
    order: 2 !important;
    min-height: auto;
  }
  .hero-copy .hero-main-heading{
    font-size: clamp(2.6rem, 7vw, 3.55rem) !important;
    max-width: 10ch !important;
    letter-spacing: -1.6px !important;
  }
  .hero-main-desc,
  .hero-copy p{
    max-width: 100% !important;
  }
  .hero-main-img{
    height: min(64vw, 440px);
  }
  .hero-meta{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .hero{
    padding: 22px 0 52px;
  }
  .hero-grid{
    gap: 18px;
  }
  .hero-copy{
    order: 1 !important;
  }
  .hero-visual{
    order: 2 !important;
  }
  .hero-copy .hero-main-heading{
    font-size: clamp(2.2rem, 10.4vw, 3.1rem) !important;
    line-height: .95 !important;
    letter-spacing: -1.2px !important;
    max-width: 10.4ch !important;
    margin-bottom: 14px !important;
  }
  .hero-copy .pill{
    margin-bottom: 12px;
  }
  .hero-main-img{
    height: min(72vw, 400px);
    padding: 12px;
  }
  .float-card{
    position: static;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 18px;
  }
}

/* === March 2026 mobile polish === */
@media (max-width: 768px) {
  .hero-grid {
    align-items: start;
    gap: 18px;
  }

  /* On mobile text should lead, then image */
  .hero-copy {
    order: 1 !important;
  }

  .hero-visual {
    order: 2 !important;
  }

  .hero-copy .pill {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .hero-copy .hero-main-heading,
  .hero-copy h1 {
    max-width: none !important;
    text-wrap: balance;
  }

  .hero-main-desc,
  .hero-copy p,
  .section-desc,
  .product-group-head p,
  .product-lead {
    max-width: none;
  }

  .hero-main-img {
    width: 100%;
    height: min(78vw, 360px) !important;
    border-radius: 18px;
  }

  .nav-inner {
    gap: 10px;
  }

  .logo {
    font-size: 24px;
    line-height: 1;
  }

  .logo img {
    max-width: min(160px, 44vw);
    width: auto;
    height: auto !important;
    max-height: 34px;
  }

  .btn-primary,
  .btn-outline,
  .btn-soft,
  .filter-btn {
    min-height: 48px;
  }

  .home-process-grid,
  .home-testimonials-grid,
  .seo-copy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    width: min(320px, calc(100vw - 36px));
    min-width: min(320px, calc(100vw - 36px));
  }

  .testimonial-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-feel {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-feel th,
  .table-feel td {
    white-space: nowrap;
  }

  iframe {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 14px;
  }

  .hero-copy .hero-main-heading,
  .hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 2.75rem) !important;
    line-height: .98;
  }

  .hero-main-img {
    height: min(82vw, 310px) !important;
    padding: 12px;
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr;
  }

  body.has-mobile-cta {
    padding-bottom: calc(var(--mobile-safe-bottom) + 158px);
  }

  body.has-mobile-cta .back-to-top-progress-btn {
    bottom: calc(var(--mobile-safe-bottom) + 186px);
  }

  body.has-mobile-cta .mobile-viber-fab {
    bottom: calc(var(--mobile-safe-bottom) + 122px);
  }
}


/* === Mobile/tablet fix: prevent vertical broken hero card text === */
.hero-visual {
  overflow: hidden;
}

.float-card,
.float-card h3,
.float-card p {
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
  overflow-wrap: normal;
  white-space: normal;
}

@media (max-width: 1024px) {
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
  }

  .hero-main-img {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual .float-card,
  .float-card.top,
  .float-card.bottom {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-visual .float-card {
    display: none;
  }
}


/* Product gallery + inline lead form */
.product-gallery-wrap{display:flex;flex-direction:column;gap:14px}
.product-gallery-thumbs{display:flex;flex-wrap:wrap;gap:10px}
.product-gallery-thumb{width:88px;height:88px;border-radius:16px;overflow:hidden;border:1px solid var(--line,#ddd);background:#fff;cursor:pointer;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.product-gallery-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.product-gallery-thumb.active{border-color:#b68a4d;box-shadow:0 10px 24px rgba(0,0,0,.08)}
.product-gallery-thumb:hover{transform:translateY(-2px)}
.lead-inline-box{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;padding:28px;border-radius:28px;background:#fff;border:1px solid rgba(0,0,0,.08);box-shadow:0 18px 40px rgba(0,0,0,.05)}
.lead-inline-box{position:relative}
.lead-inline-box[hidden]{display:none !important}
.lead-inline-box.is-collapsed{opacity:0;transform:translateY(18px);pointer-events:none}
.lead-inline-box.is-opening{animation:leadReveal .35s ease forwards}
.lead-inline-close{position:absolute;top:16px;right:16px;width:40px;height:40px;border:none;border-radius:999px;background:#f4efe7;color:#7a6440;font-size:24px;line-height:1;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;transition:transform .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;box-shadow:0 6px 18px rgba(0,0,0,.05)}
.lead-inline-close:hover{transform:translateY(-1px);background:#eadfcf;color:#5f4c2f}
@keyframes leadReveal{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}

.lead-inline-form .row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.lead-inline-form label{display:block;margin-bottom:8px;font-weight:600}
.lead-inline-form input,.lead-inline-form textarea{width:100%;padding:14px 15px;border-radius:14px;border:1px solid rgba(0,0,0,.12);background:#fff;font:inherit;transition:border-color .2s ease, box-shadow .2s ease, transform .25s ease, opacity .25s ease}
.lead-inline-form input:focus,.lead-inline-form textarea:focus{outline:none;border-color:#6f8a6a;box-shadow:0 0 0 4px rgba(111,138,106,.12)}
.lead-inline-form textarea{min-height:120px;resize:vertical}
.lead-message-group{margin-top:18px}
.lead-form-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:18px}
.form-status{opacity:0;transform:translateY(8px);pointer-events:none}
.form-status.is-visible{opacity:1;transform:translateY(0)}
.form-status.success,.form-status.error,.form-status.loading{display:inline-flex;align-items:center;min-height:22px;font-weight:600;transition:opacity .28s ease, transform .28s ease}
.form-status.success{color:#167c43}.form-status.error{color:#c0392b}.form-status.loading{color:#8a6b37}
.form-status.success.is-pulse{animation:leadPulse .55s ease}
@keyframes leadPulse{0%{transform:translateY(4px) scale(.98);opacity:0}60%{transform:translateY(0) scale(1.03);opacity:1}100%{transform:translateY(0) scale(1);opacity:1}}
@media (max-width: 980px){
  .lead-inline-box,.lead-inline-form .row{grid-template-columns:1fr}
}


/* === April 2026 mobile optimization pass === */
@media (max-width: 980px){
  .topbar{padding:10px 0}
  .topbar-inner{gap:8px;font-size:12px;line-height:1.45}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;width:100%}
  .hero-actions .btn-primary,
  .hero-actions .btn-outline{justify-content:center;width:100%}
  .trust-strip{grid-template-columns:1fr;gap:14px;padding:18px}
  .trust-item{justify-content:flex-start;padding:14px 16px;border-radius:18px}
  .section-header{margin-bottom:26px}
  .section-title{font-size:clamp(1.9rem,5.5vw,2.7rem);line-height:1.02}
  .section-desc{font-size:1rem;line-height:1.7}
  .cta-band{gap:18px}
}

@media (max-width: 768px){
  body{overflow-x:hidden}
  .topbar{display:none}
  .nav{position:sticky;top:0;z-index:80;background:rgba(250,247,242,.86);backdrop-filter:blur(14px);border-bottom:1px solid rgba(30,28,25,.08)}
  .nav-inner{min-height:72px;padding:8px 0;align-items:center}
  .nav-cta{gap:10px}
  .menu-toggle{width:46px;height:46px;border-radius:14px;background:#fff;border:1px solid rgba(30,28,25,.08);box-shadow:0 10px 22px rgba(30,28,25,.08);display:grid;place-items:center}
  .mobile-menu{padding:18px 18px calc(22px + var(--mobile-safe-bottom));border-top-left-radius:24px;border-top-right-radius:24px;box-shadow:0 -22px 60px rgba(30,28,25,.18)}
  .mobile-menu ul{gap:8px}
  .mobile-menu a{padding:15px 16px;border-radius:16px;background:rgba(250,247,242,.9);border:1px solid rgba(30,28,25,.06)}
  .mobile-menu .mobile-head{margin-bottom:18px}
  .hero{padding:18px 0 44px}
  .hero-copy{padding:0}
  .hero-copy .pill{font-size:11px;letter-spacing:1.8px;padding:10px 14px}
  .hero-copy .hero-main-heading,
  .hero-copy h1{font-size:clamp(2.15rem,10vw,2.95rem)!important;line-height:.94!important;letter-spacing:-1.5px!important;margin-bottom:14px!important}
  .hero-main-desc,
  .hero-copy p{font-size:1rem;line-height:1.75}
  .hero-actions{grid-template-columns:1fr;gap:10px}
  .hero-meta{gap:10px}
  .meta-card{padding:18px;border-radius:20px}
  .hero-visual{gap:0}
  .hero-main-img{height:min(84vw,350px)!important;border-radius:22px;box-shadow:0 20px 40px rgba(30,28,25,.12)}
  .section{padding:58px 0}
  .section-sm{padding:52px 0}
  .card,
  .contact-panel,
  .contact-form,
  .process-step,
  .cta-band,
  .seo-copy-band .card,
  .product-gallery-main,
  .product-detail-copy,
  .visual-panel,
  .content-panel{padding:22px;border-radius:24px}
  .grid-3,
  .grid-4,
  .process-grid,
  .stat-strip,
  .seo-copy-grid,
  .faq-grid,
  .contact-layout,
  .cta-band,
  .dual-visual{grid-template-columns:1fr!important;gap:16px}
  .category-card,
  .product-card,
  .service-card,
  .related-card{border-radius:24px;overflow:hidden}
  .category-card img,
  .product-card img,
  .service-card img{height:235px;border-top-left-radius:24px;border-top-right-radius:24px}
  .category-content,
  .product-content,
  .service-content{padding:18px}
  .product-toolbar{display:grid;grid-template-columns:1fr;gap:10px;margin-bottom:28px}
  .filter-btn{width:100%;justify-content:center}
  .page-banner{padding:26px 20px;border-radius:24px}
  .page-banner h1{font-size:clamp(2rem,8.2vw,2.8rem);line-height:.98}
  .contact-form .row,
  .form-grid,
  .lead-inline-form .row{grid-template-columns:1fr!important;gap:12px}
  .lead-inline-box{padding:20px;border-radius:24px;gap:18px}
  .lead-inline-close{top:12px;right:12px}
  .product-detail-hero{grid-template-columns:1fr;gap:18px}
  .product-gallery-main img{height:min(88vw,420px);padding:14px}
  .product-gallery-thumbs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
  .product-gallery-thumb{width:100%;height:72px;border-radius:14px}
  .footer{padding-bottom:calc(24px + var(--mobile-safe-bottom))}
  .footer-grid{gap:20px}
  .footer h3,.footer h4{margin-bottom:10px}
  .mobile-cta-bar{left:10px;right:10px;bottom:10px;padding:10px;border-radius:20px;grid-template-columns:1fr 1fr;gap:10px}
  .mobile-cta-bar .btn-primary,
  .mobile-cta-bar .btn-soft{min-height:52px;font-size:11px;letter-spacing:1.4px;border-radius:14px}
}

@media (max-width: 520px){
  .container{width:min(var(--max),calc(100% - 24px))}
  .nav-inner{min-height:68px}
  .logo img{max-width:min(152px,46vw);max-height:32px}
  .menu-toggle{width:44px;height:44px;border-radius:13px}
  .hero-copy .hero-main-heading,
  .hero-copy h1{font-size:clamp(1.95rem,9.4vw,2.55rem)!important;letter-spacing:-1.15px!important}
  .hero-main-desc,
  .hero-copy p{font-size:.96rem;line-height:1.72}
  .hero-main-img{height:min(88vw,318px)!important;border-radius:20px}
  .meta-card,
  .card,
  .contact-panel,
  .contact-form,
  .process-step,
  .cta-band,
  .seo-copy-band .card,
  .product-detail-copy,
  .product-gallery-main,
  .visual-panel,
  .content-panel{padding:18px;border-radius:20px}
  .category-card img,
  .product-card img,
  .service-card img{height:210px}
  .page-banner{padding:22px 18px}
  .product-gallery-thumbs{grid-template-columns:repeat(3,minmax(0,1fr))}
  .mobile-cta-bar{grid-template-columns:1fr}
}
