:root {
  --bg: #FFFFFF;
  --bg-2: #F7F7F5;
  --bg-3: #EDEDE8;
  --ink: #111111;
  --ink-2: #333333;
  --muted: #7A7A75;
  --line: #E6E6E1;
  --accent: #7CAD25;
  --accent-2: #7CAD25;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.10);
}
:root[data-theme="dark"] {
  --bg: #0E0E0F; --bg-2: #161618; --bg-3: #1F1F22;
  --ink: #F4F2ED; --ink-2: #D0CEC7; --muted: #8F8D86;
  --line: #262629; --accent: #7CAD25;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Nunito Sans', 'Futura', 'Avenir Next', 'Avenir', 'Century Gothic', 'Kanit', 'Noto Sans Thai', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400; font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .display {
  font-family: 'Nunito Sans', 'Futura', 'Avenir Next', 'Century Gothic', 'Kanit', system-ui, sans-serif;
  font-weight: 900; line-height: 1.05; letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 8vw, 120px); letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 5vw, 60px); letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 2vw, 22px); letter-spacing: -0.005em; }
h4 { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 800; }
p { color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
:lang(th), .th { font-family: 'Kanit', 'Noto Sans Thai', 'Nunito Sans', system-ui, sans-serif; }

/* Layout */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-tight { padding: 48px 0; }

/* Contact info band (home page) */
.contact-band {
  background: var(--bg-2);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.contact-band-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--ink); text-decoration: none;
}
.contact-band-item .ico {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--accent);
  flex-shrink: 0;
  transition: all .2s;
}
.contact-band-item .ico svg { width: 22px; height: 22px; }
.contact-band-item .lbl {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 3px;
}
.contact-band-item .val {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 800; font-size: 16px; color: var(--ink);
  line-height: 1.2;
}

/* ============ HEADER ============ */
header {
  position: static;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-desktop a.active::after { display: none; }

/* Products dropdown */
.nav-desktop { align-items: center; }
.nav-item {
  position: relative;
  display: flex; align-items: center;
}
.nav-item > a { display: block; }
.nav-item .caret {
  display: inline-block; margin-left: 4px;
  transition: transform .2s ease;
  font-size: 10px;
}
.nav-item:hover .caret { transform: rotate(180deg); }
.nav-item .dropdown {
  position: absolute; top: 100%; left: 0;
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 12px 0;
  min-width: 260px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 70;
  margin-top: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.nav-item:hover .dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.nav-desktop .dropdown a {
  display: block;
  padding: 4px 24px !important;
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-desktop .dropdown a:hover {
  background: #fff;
}
.nav-desktop .dropdown a.divider {
  border-top: 1px solid var(--line);
  margin-top: 8px; padding-top: 14px !important;
  color: var(--accent) !important;
}
.nav-desktop .dropdown a.active::after { display: none !important; }

.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 48px;
  height: 86px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-family: 'Nunito Sans', 'Futura', system-ui, sans-serif;
  font-weight: 900; font-size: 22px;
  letter-spacing: -0.02em; text-transform: uppercase;
  line-height: 1;
}
.logo-mark {
  width: auto; height: 52px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-mark img { height: 52px; width: auto; display: block; }
footer .logo-mark, footer .logo-mark img { height: 64px; }
.logo-text .sub {
  display: block; margin-top: 4px;
  font-size: 10px; letter-spacing: 0.16em;
  font-weight: 600; color: var(--muted);
}
header.hero-mode .logo-text .sub { color: rgba(255,255,255,0.75); }
.nav-desktop {
  display: flex; justify-content: center; gap: 8px;
}
.nav-desktop a {
  padding: 12px 22px;
  color: var(--ink); font-size: 15px; font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .2s;
}
.nav-desktop a.active { color: var(--accent); }
.nav-desktop a.active::after {
  content: ''; position: absolute; left: 22px; right: 22px; bottom: 4px;
  height: 3px; background: var(--accent); border-radius: 2px;
}
.header-right { display: flex; align-items: center; gap: 12px; grid-column: 3; justify-self: end; }
.header-icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  font-size: 16px; transition: all .2s;
}
.btn-inquiry {
  padding: 12px 26px; border-radius: 24px;
  border: 1.5px solid var(--ink); background: transparent;
  color: var(--ink); font-weight: 800; font-size: 14px;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all .2s;
}
.btn-inquiry:hover {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
.menu-toggle {
  display: none;
  place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer;
  padding: 0; line-height: 1;
}
.menu-toggle svg { width: 18px; height: 18px; fill: currentColor; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 28px;
  background: var(--accent); color: #fff;
  border: 1.5px solid var(--accent);
  font-family: inherit; font-weight: 800; font-size: 14px;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all .2s;
}
.btn:hover { background: var(--ink); border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn-white-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative; height: 68vh; min-height: 480px; max-height: 720px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d1a, #0a0a0a);
}
.hero-media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%),
    url('https://images.unsplash.com/photo-1523712999610-f77fbcfc3843?w=2000&q=85');
  background-size: cover; background-position: center;
  animation: heroZoom 20s ease-out infinite alternate;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-content .display {
  color: #fff;
  font-size: clamp(60px, 12vw, 180px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero-content .display .dot { color: var(--accent); }
.hero-eyebrow {
  color: rgba(255,255,255,0.75);
  font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 24px;
}
.hero-about-btn {
  margin: 0 auto;
}
.tour-btn.hero-about-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
  opacity: 0.6;
}
.hero-scroll { display: none; }
.hero-scroll .line {
  width: 1px; height: 32px; background: rgba(255,255,255,0.5);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* PAGE HERO (inner pages) */
.page-hero {
  position: relative; padding: 220px 0 100px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { font-size: clamp(48px, 7vw, 96px); }
.page-hero .crumb {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; font-weight: 700;
}
.page-hero .crumb span { color: var(--accent); margin: 0 8px; }
.page-hero p {
  max-width: 680px; margin: 24px auto 0;
  font-size: 17px; color: var(--ink-2);
}

/* Section head */
.sec-head {
  text-align: center; max-width: 720px;
  margin: 0 auto 72px;
}
.sec-head .eyebrow {
  display: inline-block;
  padding: 6px 16px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.1); color: var(--accent);
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 800;
  margin-bottom: 20px;
}
.sec-head h2 { margin-bottom: 20px; }
.sec-head p { color: var(--muted); font-size: 17px; }

/* ============ ABOUT (Home) ============ */
.about-home {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.about-home-image {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--bg-3);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-home-image .est {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 28px; border-radius: 12px;
}
.about-home-image .est .num {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 44px; color: var(--accent);
  line-height: 1; letter-spacing: -0.02em;
}
.about-home-image .est .lbl {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 700; margin-top: 4px;
}
.about-home-body .eyebrow {
  display: inline-block;
  padding: 6px 16px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.1); color: var(--accent);
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 800;
  margin-bottom: 20px;
}
.about-home-body h2 { margin-bottom: 24px; }
.about-home-body .lead {
  font-size: 18px; color: var(--ink-2); margin-bottom: 20px;
  line-height: 1.65;
}
.about-home-body p { margin-bottom: 20px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat .num {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 40px;
  color: var(--ink); line-height: 1;
  letter-spacing: -0.02em;
}
.about-stat .num .sfx { color: var(--accent); }
.about-stat .lbl {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
  color: var(--muted); margin-top: 8px;
}

/* ============ PRODUCTS GRID ============ */
.products {
  background: var(--bg-2);
}
.product-cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.featured-viewall-bottom { display: none; }
.product-cat {
  background: var(--bg);
  overflow: hidden;
  display: block; color: var(--ink);
}
.product-cat-image {
  aspect-ratio: 1/1;
  background-color: var(--bg-3);
  background-size: cover; background-position: center;
  position: relative;
}
.product-cat-body {
  padding: 18px 4px;
}
.product-cat-body h3 { margin: 0; font-size: 20px; font-weight: 800; line-height: 1.25; }

/* Product list */
.product-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card .img {
  aspect-ratio: 1; background: var(--bg-2);
  background-size: cover; background-position: center;
  position: relative;
}
.tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 12px;
  background: rgba(255,255,255,0.95);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
}
.tag.stock { background: #E8F5E9; color: #2E7D3E; }
.tag.low { background: #FFF3E0; color: #E65100; }
.product-card .body {
  padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.product-card .brand {
  font-size: 11px; color: var(--muted); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.product-card .title {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 800; font-size: 16px; color: var(--ink);
  line-height: 1.3;
}
.product-card .pn { font-size: 12px; color: var(--muted); font-weight: 500; }
.product-card .foot {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.product-card .foot .quote {
  font-weight: 800; font-size: 13px; color: var(--accent);
}

/* ============ ADVANTAGES ============ */
.advantages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.adv {
  background: var(--bg); padding: 40px 32px;
  border-radius: 16px; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.adv:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.adv .icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.1); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.adv h3 { margin-bottom: 12px; font-size: 20px; }
.adv p { color: var(--muted); font-size: 15px; margin: 0; }

/* ============ WHY CHOOSE US ============ */
.why-choose {
  background:
    radial-gradient(circle at 10% 15%, rgba(124, 173, 37, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 92% 85%, rgba(124, 173, 37, 0.12) 0%, transparent 46%),
    var(--ink);
  color: #fff;
  position: relative; overflow: hidden;
}
.why-choose::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1.5px);
  background-size: 28px 28px;
  z-index: 0; pointer-events: none;
}
.why-choose-deco {
  position: absolute; left: -110px; bottom: -140px;
  width: 480px; height: 480px;
  color: var(--accent); opacity: 0.09;
  z-index: 0; pointer-events: none;
}
.why-choose-inner { position: relative; z-index: 1; padding: 100px 0; }
.why-head { max-width: 620px; margin-bottom: 56px; }
.why-head .eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.16); color: var(--accent);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 800; margin-bottom: 20px;
}
.why-head h2 { color: #fff; margin: 0 0 18px; font-size: clamp(28px, 3.6vw, 44px); }
.why-head p { color: rgba(255,255,255,0.62); font-size: 17px; margin: 0; }
.why-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: background .2s ease, border-color .2s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); }
.why-card .why-num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 42px; line-height: 1;
  color: rgba(255,255,255,0.1);
}
.why-card .why-icon {
  width: 40px; height: 40px; color: var(--accent);
  margin-bottom: 22px; position: relative;
}
.why-card .why-icon svg { width: 100%; height: 100%; display: block; }
.why-card h3 { color: #fff; font-size: 18px; margin-bottom: 12px; position: relative; }
.why-card p {
  color: rgba(255,255,255,0.6); font-size: 14.5px;
  line-height: 1.65; margin: 0; position: relative;
}
@media (max-width: 1024px) {
  .why-row { grid-template-columns: repeat(2, 1fr); }
  .wrap.why-choose-inner { padding: 72px 20px; }
}
@media (max-width: 720px) {
  .why-row { grid-template-columns: 1fr; gap: 18px; }
  .wrap.why-choose-inner { padding: 56px 20px; }
}

/* ============ APPLICATIONS ============ */
.applications {
  background: var(--ink); color: #fff;
  padding: 100px 0;
}
.applications h2 { color: #fff; }
.applications .sec-head .eyebrow { background: rgba(124, 173, 37, 0.2); }
.applications .sec-head p { color: rgba(255,255,255,0.7); }
.app-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.app-card {
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  position: relative;
  background-size: cover; background-position: center;
  background-color: #1a1a1a;
}
.app-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.app-card .body {
  position: absolute; inset: auto 0 0 0; padding: 28px;
  color: #fff;
}
.app-card .lbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 800; margin-bottom: 8px;
}
.app-card h3 { color: #fff; font-size: 22px; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi {
  background: var(--bg); padding: 32px;
  border-radius: 16px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.testi .stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testi blockquote {
  margin: 0 0 24px; font-size: 16px; color: var(--ink-2);
  line-height: 1.6;
}
.testi .who { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 14px;
}
.testi .name { font-weight: 800; font-size: 14px; color: var(--ink); }
.testi .role { font-size: 12px; color: var(--muted); }

/* ============ ABOUT PAGE ============ */
.about-content { max-width: 820px; margin: 0 auto; }
.about-content .lead {
  font-size: 22px; line-height: 1.55; color: var(--ink);
  margin-bottom: 32px; font-weight: 500;
}
.about-content p { font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.about-content h2 { margin: 56px 0 24px; }
.about-content .highlight-quote {
  padding: 32px 40px;
  border-left: 4px solid var(--accent);
  background: var(--bg-2);
  border-radius: 0 12px 12px 0;
  margin: 40px 0;
  font-size: 20px; line-height: 1.5;
  font-weight: 600; color: var(--ink);
}

.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.diff {
  background: var(--bg); padding: 32px;
  border-radius: 16px; border: 1px solid var(--line);
}
.diff .num {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 40px;
  color: var(--accent); line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.diff h3 { margin-bottom: 10px; font-size: 18px; }
.diff p { font-size: 14px; color: var(--muted); margin: 0; }

/* ============ SERVICES PAGE ============ */
.svc-list {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  max-width: 1180px; margin: 0 auto;
}
.svc-row {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center;
  background: var(--bg); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--line);
}
.svc-row:nth-child(even) { grid-template-columns: 1.3fr 1fr; }
.svc-row:nth-child(even) .svc-row-image { order: 2; }
.svc-row-image {
  aspect-ratio: 4/3;
  background-color: var(--bg-3);
  background-size: cover; background-position: center;
  min-height: 340px;
}
.svc-row-body { padding: 48px; }
.svc-row-body .num-lbl {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 14px; color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.svc-row-body h2 { margin-bottom: 20px; font-size: clamp(28px, 3vw, 36px); }
.svc-row-body p { font-size: 16px; margin-bottom: 20px; }
.svc-items { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.svc-items li {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px;
  align-items: baseline; font-size: 15px; color: var(--ink-2);
}
.svc-items li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-top: 6px;
}

/* How steps */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.how-step {
  background: var(--bg); padding: 32px;
  border-radius: 16px; border: 1px solid var(--line);
  position: relative;
}
.how-step .num {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 56px;
  color: var(--accent); line-height: 1;
  letter-spacing: -0.02em; opacity: 0.9;
  margin-bottom: 16px;
}
.how-step h3 { margin-bottom: 10px; font-size: 18px; }
.how-step p { font-size: 14px; color: var(--muted); margin: 0; }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 20px 24px; cursor: pointer; list-style: none;
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  font-weight: 800; font-size: 16px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2); display: grid; place-items: center;
  font-weight: 900; font-size: 18px; color: var(--ink);
  transition: all .2s;
}
.faq details[open] summary .toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq .body { padding: 0 24px 24px; color: var(--muted); font-size: 15px; }

/* ============ LISTINGS PAGE ============ */
.listings-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 48px;
  align-items: start;
}

/* Mobile category dropdown */
.cat-dropdown-mobile { display: none; position: relative; margin-bottom: 32px; }
.cat-dropdown-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.cat-dropdown-toggle .chevron {
  transition: transform .2s ease;
  color: var(--muted);
}
.cat-dropdown-mobile.open .cat-dropdown-toggle .chevron { transform: rotate(180deg); }
.cat-dropdown-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  max-height: 400px; overflow-y: auto;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 20;
}
.cat-dropdown-mobile.open .cat-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.cat-dropdown-menu a {
  display: block; padding: 14px 20px;
  color: var(--ink); text-decoration: none;
  font-size: 16px; font-weight: 500;
  transition: background .15s;
  cursor: pointer;
}
.cat-dropdown-menu a:hover { background: #fff; }
.cat-dropdown-menu a.on { background: var(--accent); color: #fff; font-weight: 700; }

.cat-sidebar h4 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: 0.02em;
  color: var(--ink); margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
}
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li a {
  display: block; padding: 12px 0;
  color: var(--ink-2); text-decoration: none;
  font-weight: 500; font-size: 15px;
  transition: color .15s;
  cursor: pointer;
}
.cat-list li a.on { color: var(--accent); font-weight: 700; }

.listings-main .listings-title {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: 0.02em;
  color: var(--ink); margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.listings-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 24px;
}

/* Simplified listing card for products page */
.listing-item {
  color: var(--ink); text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .25s ease;
}
.listing-item:hover { transform: translateY(-4px); }
.listing-item-image {
  aspect-ratio: 1; background: transparent;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  margin-bottom: 16px;
}
.listing-item-body {
  padding: 0 8px;
  text-align: center;
}
.listing-item-name {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 700; font-size: 15px;
  line-height: 1.4; color: var(--ink);
}

/* "More Products" contact tile */
.more-products-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(30, 74, 38, 0.82), rgba(17, 17, 17, 0.9)),
    url('https://images.unsplash.com/photo-1523712999610-f77fbcfc3843?w=600&q=85');
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 20px;
  transition: transform .25s ease;
  margin-bottom: 32px;
}
.more-products-tile:hover { transform: translateY(-4px); }
.more-products-tile .mp-title {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 22px;
  color: #fff; line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.more-products-tile .mp-sub {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 800; font-size: 20px;
  color: #fff; line-height: 1.15;
}
.more-products-tile .mp-arrow {
  margin-top: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-grid; place-items: center;
  color: #fff; font-size: 16px; font-weight: 900;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all .2s;
}

/* ============ ABOUT PAGE (new format) ============ */
.about-intro-band {
  background: var(--bg-2);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.about-intro-band .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.about-intro-band .crumb {
  font-size: 14px; color: var(--muted);
  font-weight: 500;
}
.about-intro-band .crumb .sep { color: var(--muted); margin: 0 8px; }
.about-intro-band .crumb .cur { color: var(--ink); }
.home-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 20px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background .2s;
}
.home-pill svg { width: 14px; height: 14px; fill: currentColor; }

.about-main {
  padding: 80px 0 100px;
  background: var(--bg-2);
}
.about-main h1 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.015em; line-height: 1.1;
  margin: 0 0 36px;
}
.about-copy p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-2); margin-bottom: 20px;
  max-width: 88ch;
}
.about-copy p:last-child { margin-bottom: 0; }

/* Dark video section */
.about-video-band {
  background: #0d0d0e; color: #fff;
  padding: 100px 0;
}
.about-video-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: center;
}
.about-video-frame {
  aspect-ratio: 16/10;
  background-color: #1a1a1a;
  background-size: cover; background-position: center;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.about-video-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
}
.about-video-frame .play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
  box-shadow: 0 10px 30px rgba(124, 173, 37, 0.5);
}
.about-video-frame:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.about-video-frame .play-btn svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }
.about-video-frame .yt-label {
  position: absolute; left: 20px; top: 20px;
  background: rgba(0,0,0,0.7);
  padding: 8px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 13px; font-weight: 600;
}
.about-video-frame .yt-label .yt-avatar {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--accent); display: grid; place-items: center;
  font-weight: 900; font-size: 11px; letter-spacing: -0.04em;
}
.about-video-frame .yt-title {
  position: absolute; top: 20px; right: 20px; left: 200px;
  color: #fff; font-size: 15px; font-weight: 700;
  text-align: right;
}
.about-video-frame .yt-watch {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  padding: 8px 16px; border-radius: 20px;
  color: #fff; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.about-video-frame .yt-watch::before {
  content: '▶'; color: var(--accent); font-size: 11px;
}

.about-video-body h2 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: clamp(28px, 3vw, 42px);
  color: #fff; text-transform: uppercase;
  letter-spacing: -0.005em; line-height: 1.1;
  margin: 0 0 24px;
}
.about-video-body p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0; max-width: 60ch;
}

/* Facility tour */
.about-tour {
  position: relative;
  height: 60vh; min-height: 480px;
  background-color: #1a1a1a;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.about-tour::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 100%);
}
.about-tour-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 32px;
}
.about-tour-content .lbl {
  color: rgba(255,255,255,0.85);
  font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 20px;
}
.about-tour-content h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
}
.tour-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 30px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em;
  transition: background .2s;
}
.tour-btn:hover { background: rgba(255,255,255,0.28); }

@media (max-width: 1024px) {
  .about-video-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-video-frame .yt-title { display: none; }
  .about-main { padding: 60px 0 72px; }
  .about-video-band { padding: 72px 0; }
}
@media (max-width: 720px) {
  .about-video-frame .play-btn { width: 60px; height: 60px; }
  .about-video-frame .play-btn svg { width: 22px; height: 22px; }
  .about-video-frame .yt-label { padding: 6px 10px; font-size: 11px; }
  .about-tour { height: 50vh; min-height: 360px; }
}

/* ============ DEVELOPMENT HISTORY ============ */
.dev-history {
  background: var(--ink); color: #fff;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.dev-history::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.dev-history-deco {
  position: absolute; right: -110px; top: -120px;
  width: 420px; height: 420px;
  color: var(--accent); opacity: 0.08;
  z-index: 0; pointer-events: none;
}
.dev-history-head { position: relative; text-align: center; max-width: 640px; margin: 0 auto 64px; }
.dev-history-head .eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.16); color: var(--accent);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 800; margin-bottom: 20px;
}
.dev-history-head h2 { color: #fff; margin: 0 0 14px; font-size: clamp(28px, 3.6vw, 44px); }
.dev-history-head p { color: rgba(255,255,255,0.62); font-size: 17px; margin: 0; }

.dev-body {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr 56px;
  align-items: center; gap: 24px;
  max-width: 1080px; margin: 0 auto 64px;
}
.dev-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: #fff; font-size: 20px; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.dev-arrow:hover { background: rgba(255,255,255,0.14); }
.dev-content {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
  min-height: 320px;
  opacity: 1; transition: opacity .22s ease;
}
.dev-content.dev-fade { opacity: 0; }
.dev-image-wrap { display: contents; }
.dev-arrow-mobile { display: none; }
.dev-image {
  width: 100%;
  aspect-ratio: 1/1; background-size: cover; background-position: center;
  background-color: var(--ink);
  border-radius: 42% 58% 63% 37% / 47% 41% 59% 53%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.dev-text .dev-year {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 14px; color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.dev-text h3 {
  color: #fff; font-size: clamp(24px, 2.8vw, 34px);
  margin: 0 0 18px; line-height: 1.15;
}
.dev-text p {
  color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.7; margin: 0;
}

.dev-timeline { position: relative; max-width: 1080px; margin: 0 auto; }
.dev-line {
  position: absolute; left: 0; right: 0; top: 9px;
  height: 1px; background: rgba(255,255,255,0.18);
}
.dev-points {
  position: relative; display: flex; justify-content: center; gap: 120px;
  list-style: none; padding: 0; margin: 0;
}
.dev-point {
  background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: 'Nunito Sans', 'Futura', sans-serif; font-weight: 700; font-size: 14px;
  padding: 0;
}
.dev-point .dev-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); border: 2px solid rgba(255,255,255,0.4);
  transition: all .2s ease;
}
.dev-point:hover .dev-dot { border-color: var(--accent); }
.dev-point.active { color: var(--accent); }
.dev-point.active .dev-dot {
  background: var(--accent); border-color: var(--accent);
}

@media (max-width: 1024px) {
  .dev-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .dev-image-wrap {
    display: block;
    width: 100%; max-width: 320px; margin: 0 auto;
  }
  .dev-image { width: 100%; max-width: none; margin: 0; }
  .dev-body { grid-template-columns: 1fr; position: relative; }
  .dev-arrow { display: none; }
  .dev-arrow-mobile {
    display: grid; place-items: center;
    position: absolute; top: 160px; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-size: 20px; cursor: pointer;
  }
  .dev-prev-m { left: 0; }
  .dev-next-m { right: 0; }
  .dev-points { gap: 60px; }
}
@media (max-width: 720px) {
  .dev-history { padding: 72px 0; }
  .dev-points { gap: 32px; }
}

/* ============ LEGACY STATS BAND ============ */
.legacy-band {
  padding: 84px 0; background: var(--bg-2);
  position: relative; overflow: hidden;
}
.legacy-band-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.legacy-band-head .eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.1); color: var(--accent);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 800; margin-bottom: 18px;
}
.legacy-band-head h2 { margin: 0 0 12px; font-size: clamp(26px, 3.2vw, 38px); }
.legacy-band-head p { color: var(--muted); font-size: 16px; margin: 0; }
.legacy-band-inner {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.legacy-stat { text-align: center; padding: 0 16px; }
.ls-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(124, 173, 37, 0.12); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.ls-icon svg { width: 26px; height: 26px; }
.ls-num {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: clamp(30px, 3.6vw, 42px);
  color: var(--ink); line-height: 1;
}
.ls-num .sfx { color: var(--accent); }
.ls-lbl {
  margin-top: 10px; font-size: 13px; letter-spacing: 0.03em;
  color: var(--muted); font-weight: 700;
}
.legacy-divider { width: 1px; height: 64px; background: var(--line); justify-self: center; }

@media (max-width: 900px) {
  .legacy-band-inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .legacy-divider { display: none; }
}
@media (max-width: 720px) {
  .legacy-band { padding: 60px 0; }
  .legacy-band-head { margin-bottom: 40px; }
}

/* ============ FLOATING WIDGET ============ */
.fw-widget {
  position: fixed; right: 24px; bottom: 24px; z-index: 55;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}
.fw-options {
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}
.fw-widget:hover .fw-options {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.fw-opt {
  position: relative;
  display: block; width: 64px; height: 64px;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.fw-opt img { width: 100%; height: 100%; display: block; }
.fw-tip {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #fff; color: var(--ink);
  padding: 9px 18px; border-radius: 20px;
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-size: 14px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.fw-opt:hover .fw-tip {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.fw-toggle {
  width: 64px; height: 64px; border-radius: 50%;
  cursor: pointer; position: relative;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.fw-toggle img {
  width: 100%; height: 100%; display: block;
  position: absolute; inset: 0;
  transition: opacity .15s ease;
}
.fw-toggle .fw-icon-open { opacity: 0; }
.fw-widget:hover .fw-toggle .fw-icon-closed { opacity: 0; }
.fw-widget:hover .fw-toggle .fw-icon-open { opacity: 1; }

@media (max-width: 720px) {
  .fw-widget { right: 16px; bottom: 16px; gap: 10px; }
  .fw-options { gap: 10px; }
  .fw-opt, .fw-toggle { width: 52px; height: 52px; }
  .fw-tip { font-size: 13px; padding: 7px 14px; right: calc(100% + 10px); }
}

/* ============ QUOTE MODAL ============ */
.quote-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 15, 16, 0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
.quote-modal-overlay.open { display: flex; }
.quote-modal {
  background: var(--bg);
  border-radius: 20px;
  max-width: 480px; width: 100%;
  padding: 40px 32px 32px;
  position: relative;
  animation: modalIn .25s ease;
}
.quote-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); border: none; cursor: pointer;
  color: var(--ink); font-size: 20px; font-weight: 700;
  display: grid; place-items: center;
  transition: background .15s;
}
.quote-modal-close:hover { background: var(--bg-3); }
.quote-modal h3 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-size: 24px; font-weight: 900;
  margin: 0 0 8px;
  text-align: center;
}
.quote-modal p {
  font-size: 14px; color: var(--muted);
  text-align: center;
  margin: 0 0 28px;
}
.quote-modal-qr { text-align: center; }
.quote-qr-wrap { margin: 8px 0 24px; }
.quote-qr-img {
  width: 200px; height: 200px;
  border: 1px solid var(--line); border-radius: 16px;
  padding: 12px; background: #fff;
}
.quote-qr-caption { margin-top: 16px; font-weight: 700; font-size: 15px; color: var(--ink); }
.quote-call-block {
  margin-top: 8px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quote-call-block h4 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); margin-bottom: 16px;
}
.quote-call-numbers {
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}
.quote-call-numbers a {
  color: #E02424; font-weight: 900; font-size: 20px;
  text-decoration: none; letter-spacing: 0.02em;
}
.quote-call-numbers a:hover { text-decoration: underline; }

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail-crumb {
  background: var(--bg-2);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.product-detail-crumb .crumb {
  font-size: 14px; color: var(--muted);
  font-weight: 500;
}
.product-detail-crumb .crumb a { color: var(--muted); text-decoration: none; }
.product-detail-crumb .crumb .sep { color: var(--muted); margin: 0 8px; }
.product-detail-crumb .crumb .cur { color: var(--ink); font-weight: 700; }

.product-detail-hero {
  padding: 48px 0 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-images {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
}
.product-detail-thumbs {
  display: flex; flex-direction: column; gap: 10px;
}
.product-detail-thumbs .thumb {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  background-color: var(--bg-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .18s;
}
.product-detail-thumbs .thumb.on { border-color: var(--accent); border-width: 2px; }
.product-detail-main-image {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--bg-2);
}
.product-detail-body h1 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  color: var(--ink);
}
.product-detail-body p {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 60ch;
}
.product-detail-body .quote-btn {
  display: inline-block;
  padding: 16px 40px;
  margin-top: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}
.product-detail-body .quote-btn:hover { background: var(--ink); }

.product-detail-desc {
  padding: 40px 0 80px;
}
.product-detail-desc h2 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  margin: 0 0 32px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec-table th, .spec-table td {
  padding: 14px 20px;
  text-align: left;
  border: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.spec-table thead th {
  background: var(--bg-2);
  font-weight: 700;
  color: var(--ink);
}
.spec-table tbody td:first-child {
  font-weight: 600;
  width: 40%;
}
.spec-table tbody td:last-child {
  color: var(--ink-2);
}

/* Any table a product editor adds via the block editor (after the "More" divider)
   automatically gets the same look as .spec-table, so no manual class is needed. */
.product-detail-desc table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.product-detail-desc table th, .product-detail-desc table td {
  padding: 14px 20px; text-align: left; border: 1px solid var(--line);
  color: var(--ink); vertical-align: middle;
}
.product-detail-desc table th { background: var(--bg-2); font-weight: 700; }
.product-detail-desc table td:first-child { font-weight: 600; width: 40%; }
.product-detail-desc table td:last-child { color: var(--ink-2); }

@media (max-width: 1024px) {
  .product-detail-hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 48px; }
  .product-detail-images { grid-template-columns: 70px 1fr; }
}
@media (max-width: 720px) {
  .product-detail-images { grid-template-columns: 1fr; }
  .product-detail-thumbs { flex-direction: row; overflow-x: auto; }
  .product-detail-thumbs .thumb { width: 60px; flex-shrink: 0; }
  .spec-table th, .spec-table td { padding: 10px 12px; font-size: 13px; }
}

/* ============ NEWS & EVENTS PAGE ============ */
.news-title {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: 0.02em;
  color: var(--ink); margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.news-list {
  display: flex; flex-direction: column; gap: 40px;
}
.news-item {
  display: grid; grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 40px; align-items: center;
}
.news-item-image {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--bg-3);
}
.news-item-body h2 {
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800; line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 16px;
}
.news-item-body .date {
  font-size: 15px; color: var(--muted);
  margin-bottom: 16px; font-weight: 500;
}
.news-item-body p {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.6; margin: 0 0 28px;
  max-width: 62ch;
}
.news-item-body .details-btn {
  display: inline-block;
  padding: 12px 28px;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: all .18s ease;
}
.news-item-body .details-btn:hover {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
@media (max-width: 900px) {
  .news-item { grid-template-columns: 1fr; gap: 20px; }
  .news-item-image { aspect-ratio: 16/9; }
}

/* ============ NEWS DETAIL PAGE ============ */
.news-detail-body { max-width: 72ch; margin: 0 auto; }
.news-detail-body h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.15; margin: 0 0 14px;
}
.news-detail-subtitle {
  font-size: 17px; color: var(--muted);
  line-height: 1.6; margin: 0 0 24px;
}
.news-detail-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.news-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted); font-weight: 600;
}
.news-meta-item svg { width: 18px; height: 18px; fill: var(--muted); }
.news-detail-image { margin: 0 0 32px; }
.news-detail-image img {
  width: 100%; height: auto; display: block; border-radius: 12px;
}
.news-detail-content h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 40px 0 18px; line-height: 1.3;
}
.news-detail-content p {
  font-size: 16px; color: var(--ink-2);
  line-height: 1.75; margin: 0 0 22px;
}
.news-detail-content img {
  width: 100%; height: auto; border-radius: 12px; display: block;
}
.news-detail-content figure { margin: 32px 0; }
.news-detail-content figcaption {
  font-size: 14px; color: var(--muted); margin-top: 10px;
}
.news-detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 700;
  margin-bottom: 32px;
}
.news-detail-back:hover { color: var(--accent); }
@media (max-width: 720px) {
  .news-detail-image img { border-radius: 12px; }
}

/* ============ CONTACT PAGE ============ */
.contact-main { padding: 90px 0; background: var(--bg-2); }
.contact-main-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start;
}
.contact-form-card {
  background: var(--bg); padding: 48px;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form-card .eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 16px;
  background: rgba(124, 173, 37, 0.1); color: var(--accent);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 800; margin-bottom: 16px;
}
.contact-form-card h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.contact-form-card .lead { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.field { margin-bottom: 20px; }
.field-label {
  display: block; font-size: 13px; color: var(--ink);
  font-weight: 700; margin-bottom: 8px;
}
.field-label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 18px;
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 15px;
  border-radius: 12px;
  transition: all .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(124, 173, 37, 0.1);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.verify-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; }
.verify-image {
  height: 52px; padding: 8px 20px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-items: center;
  font-family: 'Courier New', monospace;
  font-size: 20px; letter-spacing: 0.15em;
  color: var(--muted); min-width: 130px;
}
.submit-btn {
  display: block; width: 100%; margin-top: 8px;
  padding: 17px; border-radius: 30px;
  background: var(--accent);
  color: #fff; border: none;
  font-family: 'Nunito Sans', 'Futura', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .2s;
}
.submit-btn:hover { background: var(--ink); }

.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-map-embed {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  position: relative; display: block;
  text-decoration: none;
}
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map-embed img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.contact-map-embed:hover img { transform: scale(1.04); }
.contact-map-embed .map-open-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 24px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.contact-aside-card {
  padding: 32px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 20px;
}
.contact-aside-card h3 { font-size: 18px; margin-bottom: 14px; }
.contact-aside-card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.contact-hours {
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink);
}
.contact-hours strong { color: var(--accent); }
.contact-hours span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }

@media (max-width: 1024px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .contact-main { padding: 56px 0; }
  .contact-form-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg-2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
footer h4 { color: var(--ink); margin-bottom: 20px; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer li { color: var(--ink-2); font-size: 14px; font-weight: 500; }
footer a { color: var(--ink-2); font-size: 14px; font-weight: 500; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 20px 0; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}

/* ============ CONTACT MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 15, 16, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
.modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border-radius: 20px;
  max-width: 520px; width: 100%;
  padding: 40px;
  position: relative;
  animation: modalIn .25s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); border: none; cursor: pointer;
  color: var(--ink); font-size: 20px; font-weight: 900;
  display: grid; place-items: center;
}
.modal-close:hover { background: var(--bg-3); }
.modal h3 { font-size: 26px; margin-bottom: 6px; }
.modal .lead { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

.lang-modal { max-width: 640px; padding: 0; }
.lang-modal-head {
  position: relative; height: 64px;
  border-bottom: 1px solid var(--line);
}
.lang-modal-body { padding: 28px 32px 36px; }
.lang-modal-body h3 {
  font-size: 22px; font-weight: 600; color: var(--muted);
  margin: 0 0 20px;
}
.lang-options { display: flex; flex-wrap: wrap; gap: 14px; }
.lang-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 22px; border-radius: 6px;
  border: none; background: var(--bg-2);
  font-family: inherit; font-size: 16px; font-weight: 400; color: var(--ink);
  cursor: pointer; text-align: left; flex: 1 1 160px;
  transition: background .15s ease, color .15s ease;
}
.lang-opt:hover { background: var(--bg-3); }
.lang-opt.active { background: var(--bg-3); font-weight: 600; }
.lang-opt small {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-left: auto;
}

/* ============ SEARCH MODAL ============ */
.search-modal { max-width: 560px; }
.search-modal h3 { font-size: 22px; margin-bottom: 20px; }
.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: 30px;
  padding: 14px 22px; color: var(--muted);
}
.search-input-wrap:focus-within { border-color: var(--accent); color: var(--accent); }
.search-input {
  flex: 1; border: none; outline: none; background: none;
  font-family: inherit; font-size: 15px; color: var(--ink);
}
.search-results {
  margin-top: 20px; max-height: 360px; overflow-y: auto;
  display: grid; gap: 4px;
}
.search-result {
  display: flex; align-items: center; gap: 14px;
  padding: 10px; border-radius: 12px;
  color: var(--ink); text-decoration: none;
}
.search-result:hover { background: var(--bg-2); }
.search-result-img {
  width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
  background-color: var(--bg-3); background-size: cover; background-position: center;
}
.search-result-name { font-weight: 700; font-size: 14px; line-height: 1.35; }
.search-result-cat { font-size: 12px; color: var(--muted); margin-top: 2px; }
.search-empty { color: var(--muted); font-size: 14px; text-align: center; padding: 24px 0; }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0 0 0; z-index: 55;
  background: var(--bg);
  padding: 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: transparent; color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
}
.mobile-nav-list { margin-top: 64px; }
.mobile-nav a, .mobile-nav-expand {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0;
  font-weight: 800; font-size: 19px;
  color: var(--ink); text-transform: none;
  border-bottom: 1px solid var(--line);
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; text-align: left; font-family: inherit;
}
.mobile-nav a.active { color: var(--accent); }
.mobile-nav-expand .chev { transition: transform .2s ease; color: var(--muted); flex-shrink: 0; }
.mobile-nav-item.open .mobile-nav-expand .chev { transform: rotate(90deg); }
.mobile-nav-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
}
.mobile-nav-item.open .mobile-nav-submenu { max-height: 600px; }
.mobile-nav-submenu a {
  padding: 14px 0 14px 16px;
  font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-submenu a.divider { color: var(--accent); font-weight: 800; }
.mobile-lang-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; margin-top: 28px; padding: 14px 18px;
  border: 1px solid var(--line); border-radius: 12px;
  background: none; color: var(--ink); cursor: pointer;
  font-family: inherit;
}
.mobile-nav .cta-block { margin-top: 28px; }
.mobile-nav .cta-block a {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; text-transform: none;
  padding: 16px 28px; border-radius: 28px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.mobile-nav .cta-block a:hover { background: var(--ink); color: #fff; }

/* ============ PAGES ============ */


/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-cats, .product-list, .listings-grid,
  .advantages, .testimonial-grid, .app-grid,
  .diff-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-band-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; padding: 24px; }
  .listings-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .listings-layout { grid-template-columns: 180px 1fr; gap: 32px; }
  .about-home { grid-template-columns: 1fr; gap: 48px; }
  .svc-row, .svc-row:nth-child(even) { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-row-image { order: 0; }
  .svc-row-body { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .about-stat .num { font-size: 32px; }
  .header-inner { gap: 24px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-desktop { display: none; }
  .menu-toggle { display: grid; }
  .header-right .btn-inquiry, .header-right .lang-toggle-btn { display: none; }
  .header-right .header-icon-btn { width: 38px; height: 38px; }
  .product-list, .listings-grid,
  .advantages, .testimonial-grid, .app-grid,
  .diff-grid, .how-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-cats { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .featured-viewall-top { display: none; }
  .featured-viewall-bottom {
    display: flex; justify-content: center;
    width: 100%; margin-top: 28px;
  }
  .listings-layout { grid-template-columns: 1fr; gap: 24px; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .cat-sidebar { display: none; }
  .cat-dropdown-mobile { display: block; }
  .listings-main .listings-title { display: none; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
  .about-stats .about-stat { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
  .about-stat .lbl { margin: 0; }
  .field-row { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-content .display { font-size: clamp(48px, 15vw, 96px); }
  .page-hero { padding: 160px 0 80px; }
  h1 { font-size: clamp(40px, 10vw, 60px); }
  .float-actions { right: 16px; bottom: 16px; }
  .float-btn { width: 48px; height: 48px; }
}
