@font-face {
  font-family: 'Config';
  src: url('../fonts/ConfigAlt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Config';
  src: url('../fonts/ConfigAlt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* CSS 变量 */
:root {
  --primary-color: #000;
  --secondary-color: #353c40;
  --accent-color: #A05242;
  --orange-color:#f60;
  --grey-color: #F7F6F5;
  --light-color:#F8F8F8;
  --black-grey-color:#e6e6e6;
  --text-color: #1A1A1A;
  --light-text: #606060;
  --black-text: #000000;
  --border-color: #E2E2E2;
  --bg-light: #F7F6F5;
  --bg-white: #ffffff;
  --bg-green:linear-gradient(180deg, rgba(230, 230, 220, 1), rgba(230, 230, 220, 1) 100%);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius-xs: 3px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-title: 'Config', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Config', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 120px;
}

/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
button {
  font-family: inherit;
}

img {
  max-width: 100%;
  border-radius: var(--radius-md);
  height: auto;
  display: block;
}


.mb-40{
  margin-bottom:40px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.read-more-text {
  position: relative;
  overflow: hidden;
  max-height: none;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.read-more-text p {
  margin: 0 0 16px 0;
  line-height: 1.8;
  color: var(--black-text);
  font-size: 16px;
}

.read-more-text p:last-child {
  margin-bottom: 0;
}

.read-more-text strong {
  font-weight: 600;
  color: var(--primary-color);
}

.read-more-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.read-more-text::before{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.read-more-text.expanded::before {
  opacity: 0;
}

/* Read More toggle link */
.read-more-toggle {
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #000;
  cursor: pointer;
  display: inline-block;
}

.read-more-toggle:hover {
  opacity: 0.55;
}


/* ========================================
   Header & Navigation
   ======================================== */

.header {
  position: relative;
  z-index: 1000;
  background-color: var(--bg-white);
}

.header-placeholder {
  transition: height 0.3s ease;
}

/* 智能导航：滚动后固定在顶部 */
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
  will-change: transform;
}

/* 向下滚动时隐藏导航（向上滑出） */
.header.is-fixed.header-hidden {
  transform: translateY(-100%);
}

/* Scrolled state: shadow at bottom */
.header.scrolled .header-container {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 隐藏时移除底部border，显示时保留阴影 */
.header.header-hidden .header-container {
  box-shadow: none;
}

.header.header-hidden {
  pointer-events: none;
}

.header.header-hidden .dropdown-menu,
.header.header-hidden .nav-dropdown:hover .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
}

.header.header-hidden .dropdown-menu-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
}

/* 上行：搜索和购物车按钮 (Desktop) / 单行导航 (Mobile) */
.header-top {
  padding-top: 12px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Desktop: show spacer + icons only in top row */
.header-left {
  display: none;
}

.header-right {
  display: none;
}

.header-top .logo-mobile {
  display: none !important;
}

/* Hide mobile nav on PC */
.mobile-nav {
  display: none !important;
}

.header-top-spacer {
  flex: 1;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.header-icon-btn:hover {
  color: var(--primary-color);
}

.header-icon-btn svg {
  width: 34px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-color);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 下行：Logo和导航 */
.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* 导航区域包装器：导航菜单 + 图标按钮 */
.header-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-image {
  width: 138px;
  height: auto;
}

/* 导航底部联系信息栏 */
.header-contact-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #666;
}

.contact-phone,
.contact-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-phone svg,
.contact-address svg {
  flex-shrink: 0;
  opacity: 0.7;
}


.logo-text {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  height: 100%;
}

.nav-menu a {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.nav-menu a:hover {
  text-decoration-line: underline;
}

.nav-menu a.active {
  text-decoration-line: underline;
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Dropdown Menu - 全屏背景，内容限制在container内 */
.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  padding: 20px 0 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 997;
}

/* Bottom border - full width */
.dropdown-menu::after {
  content: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Backdrop overlay when dropdown open */
.dropdown-menu-overlay {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 996;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px 0;
}
.dropdown-menu-inner:after{
  content: "";
    position: absolute;
    width: 100%;
    max-width: 1360px;
    background: #e2e2e2;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translate(-50%);

}

.dropdown-item-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px;
}

.dropdown-item-group:first-child {
  padding-left: 0;
}

.dropdown-item-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0px !important;
  margin-top:0;
  margin-bottom: 5px;
}

.dropdown-item-title.active {
  color: var(--primary-color);
}

.dropdown-submenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-submenu a {
  font-size: 14px;
  padding:0;
  color: rgba(0,0,0,0.7);
  font-weight: 400;
  transition: var(--transition);
  text-transform: capitalize;
}

.dropdown-submenu a:hover,
.dropdown-submenu a.active {
  color: var(--primary-color);
}

/* Dropdown Promo Section - 右侧图片卡片 */
.dropdown-menu-inner.has-promo {
  grid-template-columns: repeat(5, 1fr) auto;
  align-items: start;
}

.dropdown-menu-inner.has-promo .dropdown-promo {
  grid-column: 5 / -1;
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
  align-self: flex-start;
  margin-top: 0;
  padding-top: 0;
}

.dropdown-promo-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  text-decoration: none;
  line-height: 0;
  margin: 0;
  padding: 0 !important;
}

.dropdown-promo-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.dropdown-promo-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: var(--font-title);
  z-index: 1;
}

/* ========================================
   Hero Section - 全宽背景图
   参考: belveo.fr image_with_text_overlay
   ======================================== */

.hero-section {
  width: 100%;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  /* 高度由CSS变量控制，或使用固定值 */
  height: clamp(450px, 65vh, 600px);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background:rgba(0,0,0,0.19);
  text-align: center;
}

.hero-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
}

.hero-desc{
  font-size: 16px;
  color:#ffffff;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: #ffffff;
  color:var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ========================================
   Categories Gallery - 正方形分类卡片
   参考: belveo.fr gallery_new
   ======================================== */

.categories-gallery {
  padding: 60px 0;
}

/* PC: show grid, hide carousel */
.gallery-carousel {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
}

.gallery-card-bg {
  position: absolute;
  inset: 0;
}

.gallery-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 60%);
  z-index: 2;
}

.gallery-card-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-xs);
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}

.gallery-card-btn::before {
    content: '';
    position: absolute;
    inset: 0;          /* 继承或相对于已定位的父级容器铺满 */
    z-index: 1;        /* 确保伪元素覆盖整个区域 */
}

/**home media and text**/
.media-text-inner {
  padding: 0 40px;
}


.media-text-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  border-radius: var(--radius-xs);
  overflow: hidden;
     
}

.media-text-row.reverse {
  flex-direction: row-reverse;
}

.media-text-content {
  flex: 1;
  flex-basis: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 32px 40px;
   background: #efefef;
    border-radius: 8px;
}

.media-text-image {
  flex: 1;
  flex-basis: calc(50% - 12px);
  border-radius: var(--radius-xs);
  overflow: hidden;
  position: relative;
  width: 660px;
  height: 500px;
  max-width: 100%;
}

.media-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.media-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black-text);
  margin: 0;
}

.media-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
}

/* ========================================
   Partner Brands Section - 合作伙伴展示
   ======================================== */

.partner-brands-section {
  background: #fff;
}

.partner-brands-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.partner-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.partner-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.partner-brand-item:hover{
  opacity: 1;
}

.partner-brand-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  object-fit: contain;
}
.partner-brand-item  img:hover{
  filter: grayscale(0);
}

.products-search-list-section{
  padding-bottom: 40px;
}

@media (max-width: 576px) {
  .partner-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

.reviews-section {
  padding: 32px 0 48px;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  background-color: #f0f0ee;
  border-radius: var(--radius-xs);
  padding: 32px 24px;
  gap: 20px;
}

.review-card-header {
  margin-bottom: 8px;
  min-height: 50px;
}

.review-trustpilot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-rating {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

.review-icon {
  width: auto;
  height: 50px;
}

.review-icon svg,
.review-icon img {
  height: 50px;
  width: auto;
}

.review-card-title {
  font-family: var(--font-title);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black-text);
  line-height: 1.3;
  margin: 0;
}

.review-card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black-text);
  margin: 0;
}

.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 4px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--light-color);
}

.footer-mobile {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Remove the multi-column footer navigation and keep only brand on desktop */
.footer-grid .footer-column {
  display: none;
}

.footer-grid {
  grid-template-columns: 1fr;
}

.footer-brand {
  align-self: start;
  text-align: center;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin-top: 15px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
}
.footer-links a:hover {
  text-decoration: underline;
}


/* Footer Bottom - 新样式匹配目标图片 */
.footer-bottom {
  padding: 40px 0 0;
  margin:0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  gap: 18px;
  font-size: 13px;
}

/* 社交媒体图标区域 - 顶部居中 */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 2px;
}


.footer-social .social-icon svg {
  width: auto;
  height: 24px;
}

/* 让 SVG 图标在黑色背景上显示为白色 */
.footer-social .social-icon svg path {
  fill: currentColor;
}

/* Footer legal links */
.footer-legal-links {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0 8px;
  color: #000;
}

.footer-legal-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

.footer-legal-links .separator {
  margin: 0 2px;
    color: #000;
}

/* 无障碍提示文字 */
.footer-accessibility {
  text-align: center;
  color: #000;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* 版权信息 - 全大写 */
.footer-copyright-text {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

/* UP 按钮 - 黑色全宽 */
.footer-up-btn {
  width: 100%;
  max-width: 500px;
  padding: 14px 30px;
  background-color: #333;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  margin-top: 10px;
}

.footer-up-btn:hover {
  background-color: #000;
}

/* ========================================
   Responsive Design
   ======================================== */



/* ========================================
   Products List Page Styles
   ======================================== */

.products-list-section{
  padding-top:40px;
}

.products-page-title {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
}

.products-category-header-description {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.search-page-title {
  font-size: 40px;
  margin-top:40px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.filter-dropdown-btn:hover {
  color: #000;
}

.filter-dropdown-btn svg {
  opacity: 0.6;
}

/* Stock Toggle */
.stock-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stock-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #666;
  text-transform: uppercase;
}

.toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  border-radius: 20px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #000;
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(16px);
}

/* Category Filter Bar - Direct pill tags */
.category-filter-bar {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap:  8px;
  justify-content: center;
}

/* Sub-category filter bar (second row) */
.category-filter-bar.sub-filter-bar {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-option {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  background: rgb(239, 239, 239);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.category-option.active {
  background: #000;
  color: #fff;
}

/* Products Grid - 4 columns like reference */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* Product Card Modern Style */
.product-card-modern {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: transparent;
  border-radius: 4px;
  overflow: hidden;
}

.product-card-modern:hover {
  background-color: transparent;
}

/* Product Image - Large, clean */
.product-image-wrapper-modern {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.product-image-wrapper-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

/* Product Info - Below image */
.product-info-modern {
  padding: 16px 0 0;
  background: #fff;
  text-align: center;
}

.product-name-modern {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

.product-material {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

/* Color Dots */
.product-colors {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-dot:hover {
  transform: scale(1.15);
}

.color-more {
  font-size: 10px;
  color: #999;
  margin-left: 2px;
}

/* Price */
.product-price {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.no-products-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #999;
  font-size: 16px;
}

/* ===== Feature Showcase Section ===== */
.product-feature-section {
  padding: 80px 0;
  background-color: #f5f5f3;
  border-radius: var(--radius-md);
}

.feature-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-text-center {
  text-align: center;
  margin-bottom: 50px;
}

.feature-main-title {
  font-size: 40px;
  font-weight: 500;
  color: var(--black-text);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-subtitle {
  font-size: 20px;
  font-weight:500;
  color: var(--black-text);
}

/* Feature Visual - Image as background with specs overlay */
.feature-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.feature-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.feature-specs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px 20px;
}

.spec-item h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black-text);
  margin-bottom: 8px;
}

.spec-item p {
  font-size: 16px;
  color: var(--black-text);
  font-weight: 400;
  line-height: 24px;
  max-width: 310px;
  margin: 0;
}

/* ===== Service Guarantee Section ===== */
.service-guarantee-section {
  padding: 60px 40px;
  margin: 60px 0;
  border-radius: var(--radius-md);
  background-color: #efefef;
}

.service-guarantee-section.pd-service-guarantee {
  max-width: 1280px;
  margin: 0 auto;
}

.service-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 40px;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 190px;
  flex: 1 1 100%;
  margin: 0 auto;
  width: 100%;
  transition: opacity .1s;
}

.service-icon {
  margin-bottom: 15px;
  opacity: 0.8;
}

.service-icon svg {
  width: 80px;
  height: 80px;
}

.service-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-text);
  line-height: 1.4;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 70px 0;
  background-color: #fff;
}

.faq-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question span:first-child {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.faq-question:hover span:first-child {
  color: #000;
}

.faq-toggle-icon {
  font-size: 20px;
  font-weight: 300;
  color: #999;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-question.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  padding-bottom: 18px;
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ===== Our Collections Section ===== */
.our-collections-section {
  padding: 60px 80px;
  border-radius: var(--radius-md);
  background-color: #BFC3C8;
}

.collections-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 35px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.collection-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  border-radius: 2px;
}

.collection-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.collection-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #bbb 0%, #999 100%);
}

.collection-card-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  padding: 12px 0;
  text-transform: uppercase;
}

/* ===== Products CTA Section ===== */
.products-cta-section {
  padding: 100px 0;
  background-color: #fff;
}

.products-cta-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.4;
}

.cta-description {
  font-size: 16px;
  font-weight:400;
  color: var(--black-text);
  line-height: 1.8;
  margin-bottom: 30px;
}
.cta-description a {
  text-decoration: underline;
}

.cta-read-more-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-read-more-btn:hover {
  background-color: #333;
  color: #fff;
}

/* Responsive - Products Page Sections */




/* ===== Pagination (Apple Style) ===== */
.apple-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding: 24px 0;
}

.apple-pg-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #1d1d1f;
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.apple-pg-arrow:hover {
  background-color: #f5f5f7;
}

.apple-pg-disabled {
  opacity: 0.25;
  pointer-events: none;
}

.apple-pg-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 38px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  border: 1.5px solid #d2d2d7;
  border-radius: 8px;
}

.apple-pg-total {
  font-size: 15px;
  color: #86868b;
  letter-spacing: 0.3px;
}

/* ===== Shared Form Styles (used by checkout & quote forms) ===== */
.contact-section {
  padding: 0;
  background-color: #efefef;
  border-radius: var(--radius-md);
}

.contact-form-title {
  padding-top:20px;
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: #333;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .field-error {
  border-color: #e53935 !important;
}

.field-error-message {
  color: #e53935;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background-color: var(--primary-color);
  color: #fff;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
  margin-bottom: 32px;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
}

/* ===== Contact Page ===== */
/* ===== Contact Info Section (legacy, kept for compat) ===== */
.contact-info-section {
  padding: 80px 0;
  border-radius: var(--radius-md);
  margin-top: 60px;
  background-color: #f0f0ee;
}

.contact-info-title {
  font-size: 40px;
  font-weight: 500;
  color: var(--black-text);
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-info-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.contact-card-wide {
  grid-column: 1 / -1;
  max-width: none;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #eef2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a7c59;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #aaa;
}

.contact-card-value {
  font-size: 16px;
  color: var(--black-text);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 50px 0;
    margin-top: 40px;
  }

  .contact-info-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-info-desc {
    font-size: 14px;
    margin-bottom: 36px;
    padding: 0 24px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
    padding: 0 20px;
  }

  .contact-info-card {
    padding: 22px 20px;
    gap: 14px;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

/* ===== Homepage: Case Studies & More styles (appended) ===== */

.case-studies-section .section-title {
  text-align: center;
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 60px;
  font-weight: 500;
  text-transform: uppercase;
}
.case-studies-inner{
  padding:0;
}

/* PC: show grid, hide carousel */


.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.index .cases-grid{
  grid-template-columns: repeat(3, 1fr);
}

.cases-carousel {
  display: none;
}

.cases-carousel .case-studies-panel {
}

.cases-carousel .cases-track {
  display: flex;
  transition: transform 0.4s ease;
}
.case-card {
  box-shadow: none;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

}
.case-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #efefef 0%, #e6e6e6 100%);
}

.case-card-title {
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  text-align: left;
  text-transform: uppercase;
}
.index .case-card-title{
  padding:16px 0;
}
.cases-actions { text-align: center; margin-top: 18px; }
.btn.btn-outline { border: 1px solid var(--border-color); padding: 10px 18px; border-radius: 6px; color: var(--primary-color); background: transparent; }

.home-more-section { padding: 0; background: var(--bg-white); }
.home-more-inner { max-width: 960px; margin: 0 auto; text-align: center; padding: 0 20px;}
.home-more-inner .section-title { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; font-weight: 500;text-transform: uppercase;  }
.home-more-desc { color: var(--black-text); font-size:16px;margin-bottom: 20px; line-height: 1.8; }
.home-more-actions { display: flex; gap: 12px; justify-content: center; align-items: center; }
.home-more-actions .btn { padding: 12px 20px; border-radius: 6px; }

/* ===== Home Commercial Spaces + Stats ===== */
.home-commercial-spaces-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.home-commercial-spaces-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.home-commercial-spaces-intro {
  max-width: 960px;
}

.home-commercial-spaces-title {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 12px;
}

.home-commercial-spaces-desc {
  font-size: 16px;
}

.home-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 980px;
}

.home-stat-item {
  text-align: center;
}

.home-stat-number {
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  margin-bottom: 6px;
}

.home-stat-suffix {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}

.home-stat-label {
  font-size: 14px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Home Projects Showcase ===== */
.home-projects-showcase-section {
  padding-bottom: 60px;
  background: var(--bg-white);
}

.home-projects-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== Home Planning CTA ===== */
.home-planning-cta-section {
  padding: 40px 0;
  background: var(--bg-white);
}



.home-planning-cta-inner {
  text-align: center;
  background: #efefef;
  border-radius: var(--radius-md);
}
.home-planning-cta-content{
      max-width: 780px;
    padding: 60px 80px 32px;
    margin: 0 auto;

}

.home-planning-cta-title {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 8px;
}

.home-planning-cta-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--light-text);
}

.home-planning-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  margin-bottom: 60px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-planning-cta-content .home-more-text {
  text-align: left;
  padding-top: 8px;
  display: none;
}

.home-planning-cta-content .home-more-text.expanded {
  display: block;
}

.home-planning-cta-content .read-more-text::before {
  display: none;
}



/* Align new home sections with full-bleed sections above/below (hero, categories) */
.home-commercial-spaces-section > .container,
.home-projects-showcase-section > .container,
.home-planning-cta-section > .container {
  padding-left: 0;
  padding-right: 0;
}

/* Expandable content behaviour */
.expandable-content { transition: max-height 0.35s ease; }
.expandable-content.collapsed { max-height: 140px; overflow: hidden; position: relative; }
.expandable-content.collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 80%, rgba(255,255,255,1) 100%);
}
.expandable-content.expanded { max-height: 2000px; overflow: visible; }

.home-more-toggle-wrapper { text-align: center; margin: 14px 0 6px; }
.home-more-wrapper { display: flex; flex-direction: column; }
.home-more-wrapper .home-more-toggle-wrapper.top { order: 1; }
.home-more-wrapper .home-more-text { order: 2; }
.home-more-wrapper .home-more-text.expanded + .home-more-toggle-wrapper.top { display: none; }
.home-more-wrapper .home-more-toggle-wrapper.bottom { order: 3; display: none; }
.home-more-wrapper .home-more-text.expanded .home-more-toggle-wrapper.bottom { display: block; }
.btn.small { padding: 8px 14px; font-size: 13px; }
.btn.btn-primary { background: var(--primary-color); color: #fff; border: none; }

/* Ensure gallery and media images use cover for consistent layout */
.gallery-card-bg img,
.case-card-img img,
.media-text-image img,
.feature-hero-image,
.contact-image-wrapper img { object-fit: cover; width: 100%; height: 100%; border-radius: var(--radius-md);}


/* Carousel controls styling for case studies */
.cases-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  padding: 14px 24px;
}

.cases-carousel-controls .carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cases-carousel-controls .carousel-btn:hover {
  background: #f5f5f5;
}

.cases-carousel-controls .carousel-btn svg {
  width: 18px;
  height: 18px;
}

.cases-carousel-controls .carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cases-carousel-controls .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cases-carousel-controls .carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}


/* ===== Contact Partner Logos ===== */
.contact-partners-section {
  padding: 60px 0;
  background-color: #fff;
}

.partner-logos-carousel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.partner-logo-item {
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo-item:hover {
  opacity: 1;
}

.partner-logo-item img {
    max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logo-item:hover img {
  filter: grayscale(0);
}

/* ===== Contact FAQ Section ===== */
.contact-faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.faq-section-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: left;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question span:first-child {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  flex: 1;
  padding-right: 24px;
}

.faq-toggle {
  font-size: 22px;
  font-weight: 300;
  color: #999;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.75);
  line-height: 1.75;
  margin: 0;
}

/* ===== Contact CTA Section ===== */

.cta-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 40px;
}

.cta-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto 32px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: rgb(243 243 243);
}

/* ===== About Page ===== */

/* Hero */
.about-hero-section {
  padding-bottom: 20px;
  text-align: center;
}

.about-hero-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.about-hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
}

/* Gallery Grid */
.about-gallery-section {
  padding: 0;
}

/* PC: show grid, hide carousel */
.about-gallery-carousel {
  display: none;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-gallery-grid .gallery-item {
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Story Section - Gray */
.about-story-section {
  margin: 68px 0;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(230, 230, 220, 1), rgba(230, 230, 220, 1) 100%);
}

.about-story-content {
  padding: 80px;
}

.about-story-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.about-story-content > p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-story-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-story-list li {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 8px 0;
  position: relative;
  padding-left: 16px;
}

.about-story-list li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #000;
}

/* Feature Section */
.about-feature-section {
  padding: 80px 0;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.85;
  margin-bottom: 14px;
}

.feature-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}


/* CTA Section */
.about-cta-section {
  padding: 40px 0;
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  background-color: #E6E6DC;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.cta-heading {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}


.cta-text {
  font-size: 16px;
  color: #000;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ===== Legal Pages (Privacy, Terms, Accessibility) — belveo-inspired editorial ===== */
.legal-page {
  background: #ffffff;
  padding: 88px 0 120px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-eyebrow {
  display: none;
}

.legal-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.legal-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 26px;
  max-width: 680px;
}

.legal-updated {
  font-size: 14px;
  color: #8a8a8a;
  padding-bottom: 0;
  margin-bottom: 44px;
  border-bottom: none;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #333;
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* Inline bullet list (no <li>) — e.g. <p class="legal-bullet"><strong>• Item</strong></p> */
.legal-bullet {
  margin-bottom: 10px;
  padding-left: 2px;
}

.legal-bullet strong {
  font-weight: 600;
  color: #1a1a1a;
}

.legal-section ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-section li {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 9px;
}

.legal-section a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26, 26, 26, 0.4);
  transition: text-decoration-color 0.2s ease;
}

.legal-section a:hover {
  text-decoration-color: #1a1a1a;
}

.legal-contact {
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.legal-contact h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.legal-contact ul {
  margin: 0;
  padding-left: 22px;
}

.legal-contact li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.85;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 56px 0 80px;
  }
  .legal-title {
    font-size: 30px;
  }
  .legal-lead {
    font-size: 16px;
  }
  .legal-section h2 {
    font-size: 19px;
  }
}

/* About Responsive */

/* ===== Product Detail Page - New Style ===== */

.product-detail-section {
  padding: 20px 0;
}

/* Breadcrumb */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
  color: #000;
}

.bc-sep {
  color: #999;
}

/* Detail Grid */
.product-detail-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Info */
.product-info-left {
  padding-right: 10px;
}

.product-name-main {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.product-sub-brand {
  font-size: 16px;
  color: #999;
  margin-bottom: 16px;
  font-weight: 400;
}

/* Description Text */
.product-desc-text {
  font-size: 18px;
  color: #000;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Inquire Button Full Width */
.inquire-btn-full {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #1a2332;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.25s ease;
  margin-bottom: 24px;
}

.inquire-btn-full:hover {
  background: #0d1219;
}

/* Accordion Sections */
.detail-accordion {
  margin-top: 32px;
  position: relative;
  padding-bottom: 1px; /* 给伪元素留位置，避免压住内容 */
}

.detail-accordion::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  border-left: none;
  border-right: none;
  border-bottom: none;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.acc-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.accordion-item.open .acc-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding: 12px 0 16px;
}

/* Specs Table New */
.specs-table-new {
  width: 100%;
  border-collapse: collapse;
  padding: 12px 0 16px;
}

.specs-table-new tr {
  border-bottom: 1px solid #f0f0f0;
}

.specs-table-new td {
  padding: 10px 0;
  font-size: 14px;
  vertical-align: top;
}

.spec-label {
  color: #888;
  width: 140px;
  font-weight: 500;
}

.spec-value {
  color: #333;
}

/* Right Image */
.product-image-right {
  position: sticky;
  top: 100px;
}

.product-image-box {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.product-image-box img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 4px;
}

.no-image-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #e0e5ec 0%, #d4dce6 100%);
  border-radius: 4px;
}

/* ===== Product Detail - Service Bar ===== */
.pd-service-bar {
  padding: 50px 0;
  background-color: #f5f5f3;
}

.pd-service-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: var(--black-text);
  margin-bottom: 36px;
  text-transform: uppercase;
}

.pd-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-left: -15px;
  margin-right: -15px;
}

.pd-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.pd-service-item svg {
  width:80px;
  height:80px;
}

.pd-service-item span {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
  font-weight: 500;
}

/* Product Detail Responsive */

/* ===== Product Detail - FAQ Section ===== */
.pd-faq-section {
  padding: 60px 0;
}

.pd-faq-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.pd-faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.pd-faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.pd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.pd-faq-question:hover {
  color: #000;
}

.pd-faq-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.pd-faq-question.open .pd-faq-icon {
  transform: rotate(45deg);
}

.pd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pd-faq-answer p {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  padding-bottom: 18px;
}

/* ===== Product Detail - Related Products ===== */
.pd-related-section {
  padding: 40px 0;
}

.pd-related-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pd-related-card {
  text-decoration: none;
  display: block;
  transition: opacity 0.25s ease;
}


.pd-related-img-wrap {
  border-radius: 4px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 14px;
}

.pd-related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-related-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8ebe9 0%, #dddcd6 100%);
}

.pd-related-info {
  padding: 0 2px;
  text-align: center;
}

.pd-related-name {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.45;
  text-transform: uppercase;
}

.pd-related-category {
  font-size: 14px;
  opacity: 0.7;
  color: #000;
  margin-bottom: 8px;
}

.pd-related-colors {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.pd-color-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: inline-block;
}

.pd-related-price {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

/* ===== Product Detail - Blog Section ===== */
.pd-blog-section {
  padding: 70px 0 90px;
}

.pd-blog-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pd-blog-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.pd-blog-subtitle {
  font-size: 20px;
  color: #000;
  margin-bottom: 24px;
  font-weight: 500;
}

.pd-blog-excerpt {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: center;
}

/* ===== Product Detail - You May Also Like (Image Style) ===== */
.pd-you-like-section {
  padding: 60px 0;
}

.pd-you-like-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.4;
}

.pd-you-like-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pd-you-like-card {
  text-decoration: none;
  display: block;
  transition: opacity 0.25s ease;
}

.pd-you-like-card:hover {
  opacity: 0.7;
}

.pd-you-like-img-wrap {
  background: #f0f0ee;
  border-radius: 4px;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
}

.pd-you-like-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-you-like-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8ebe9 0%, #dddcd6 100%);
}

.pd-you-like-info {
  padding: 0 2px;
}

.pd-you-like-name {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.45;
}

.pd-you-like-desc {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
  line-height: 1.5;
}

.pd-you-like-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.pd-you-like-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: inline-block;
}

.pd-you-like-price {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

/* ===== Cases List Page (Belveo Style) ===== */
.cases-header-section {
  padding-top:40px;
}

.cases-main-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.35;
  text-transform: uppercase;
}

.cases-main-desc {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
}

.cases-grid-section {
  padding: 20px 0 60px;
}

.cases-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== Cases Bento Grid (2 large + 4 small per group, small = 1/4 area of large) ===== */
.cases-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bento-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  aspect-ratio: 4 / 3;
}

.bento-item {
  position: relative;
   
    min-width: 0;
    min-height: 0;
}

.bento-item .case-item-img {
  width: 100%;
  height: 100%;
}

.bento-pos-0 { grid-area: 1 / 1 / 3 / 3; }
.bento-pos-1 { grid-area: 1 / 3 / 2 / 4; }
.bento-pos-2 { grid-area: 1 / 4 / 2 / 5; }
.bento-pos-3 { grid-area: 3 / 1 / 4 / 2; }
.bento-pos-4 { grid-area: 3 / 2 / 4 / 3; }
.bento-pos-5 { grid-area: 2 / 3 / 4 / 5; }

.bento-item .case-item-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 14px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: left;
}

/* 不足 6 项的尾组：退回到普通网格，避免大片空白 */
.bento-group-partial {
  grid-template-rows: auto;
  aspect-ratio: auto;
}
.bento-group-partial .bento-item {
  grid-area: auto !important;
}
.bento-group-partial .bento-item .case-item-img {
  aspect-ratio: 4 / 3;
}

.case-item-card {
  text-decoration: none;
}
.case-item-img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.case-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8ebe9 0%, #dddcd6 100%);
}


.case-item-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  display: inline-block;
  color: #000;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
}


/* 色卡卡片右上角 PDF 角标 —— 仅在 swatch 含 PDF 时显示 */
.case-item-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
  backdrop-filter: blur(4px);
}
.case-item-badge svg {
  display: block;
  flex-shrink: 0;
}

.case-item-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  text-transform: uppercase;
}

.cases-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  color: #999;
  font-size: 15px;
}

/* ===== Brochure Cards ===== */
.brochure-card {
  cursor: pointer;
}
.brochure-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.brochure-card .case-item-img {
  aspect-ratio: 3/4;
}
.brochure-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brochure-icon {
  font-size: 64px;
  opacity: 0.5;
}
.brochure-download-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
}
.brochure-card:hover .brochure-download-overlay {
  opacity: 1;
}
.brochure-download-btn {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.brochure-card-body {
  padding-top: 12px;
}
.brochure-desc {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.brochure-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #999;
}
.brochure-format {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
  color: #666;
}

/* Cases Responsive */

/* ===== Case Detail Page (Belveo Style) ===== */

/* Header */
.case-detail-header {
  padding: 60px 0 0;
}

.cd-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cd-meta {
  text-align: center;
  font-size: 16px;
  font-weight:400;
  color: #000;
}

.cd-btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cd-action-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  transition: opacity 0.2s ease;
}

.cd-action-btn:hover {
  opacity: 0.8;
}

/* Featured Image */
.cd-featured-section {
  padding: 40px;
}

.cd-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
}

.cd-main-image {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.cd-placeholder-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #c5d4c0 0%, #a8bba3 100%);
  border-radius: 6px;
}

/* Content */
.cd-content-section {
  padding: 50px 0;
  margin:0 auto;
  max-width: 800px;
}

.cd-content-body {
  font-size: 18px;
  color: #000;
  line-height: 1.85;
}
.cd-content-body img{
  width:1200px;
  max-width: none;
  display: block;
  margin-left: calc((100% - 1200px) / 2);
  margin-bottom: 24px;
}
.cd-content-body p{
  margin: 0 0 24px;
}
.cd-content-body p:last-child{
  margin-bottom: 0;
}

.md-height-space{
  height:40px;
}

/* FAQ Section */
.cd-faq-section {
  padding: 60px 0;
}

.cd-faq-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.cd-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.cd-faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.cd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.cd-faq-question:hover {
  color: #000;
}

.cd-faq-icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.25s ease;
}

.cd-faq-question.open .cd-faq-icon {
  transform: rotate(45deg);
}

.cd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.cd-faq-answer p {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  padding-bottom: 18px;
}

/* Bottom Cards */
.cd-cards-section {
  padding: 60px 0 80px;
}

.cd-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cd-bottom-card {
  background: #e6e6dc;
  padding: 40px;
  border-radius: 4px;
}

.cd-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.cd-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.65;
  margin: 20px 0;
  height:100px;
}

.cd-card-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.cd-card-btn:hover {
  background: rgb(243, 243, 243);
}

/* Case Detail Responsive */

/* ===== News List Page (Belveo Style) ===== */

/* Header */
.news-header-section {
  padding: 40px 0 0;
}

.news-main-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 500;
  color: #000;
  margin-bottom: 40px;
}

.news-category-header-description {
  max-width: 900px;
  margin: -20px auto 30px;
  text-align: center;
  font-size: 16px;
}

/* Grid */
.news-grid-section {
  padding: 0 0 60px;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-item-card {
  display: block;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.news-item-img {
  background: #f5f5f3;
  border-radius: 4px;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8ebe9 0%, #dddcd6 100%);
}

.news-item-title {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  line-height: 1.45;
  margin-bottom: 10px;
  overflow: hidden;
}

.news-item-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 12px;
  overflow: hidden;
}

.news-item-meta {
  font-size: 13px;
  display: inline-block;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  color: #999;
}

/* News Responsive */

/* ===== News Detail Page ===== */

/* Banner - full width (outside main-content) */
/* Header: title + publish time (like case detail) */
.nd-detail-header {
  text-align: center;
  padding-top: 60px;
  margin-bottom: 40px;
}

.nd-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  margin: 0 0 12px;
}

.nd-publish-time {
  font-size: 16px;
  color: #999;
  margin: 0;
}

/* Content */
.nd-content-section {
  padding: 0 0 80px;
}

/* ── 新闻正文容器（窄栏阅读） ── */
.nd-body {
  font-size: 18px;
  color: #000;
  line-height: 1.85;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 文字段落：保持在 800px 窄栏内 */
.nd-body p {
  margin: 20px auto;
  font-weight: 400;
  max-width: 800px;
}
.nd-body a{
  text-decoration:underline;
}

/*
 * 含图的段落：解除 800px 限制，变为宽容器（最多 1200px）。
 * 居中方式：margin-left:50% 把 <p> 左边缘移到父元素(.nd-body)正中间，
 *          transform:translateX(-50%) 再把 <p> 自身往回推一半宽度。
 *          无论图片是 600 还是 1400，都精确居中——不依赖任何固定数值。
 */
.nd-body p:has(img) {
  max-width: none;
  width: min(calc(100vw - 144px), 1200px);
  margin-left: 50%;
  transform: translateX(-50%);
}

/* 图片：不拉伸；大图封顶 1200（相对宽<p>），小图原尺寸并居中 */
.nd-body img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;   /* 在宽 <p> 内居中（小图也居中，不被左对齐推偏） */
  margin-bottom: 20px;
  border-radius: var(--radius-md);
}




/* Tables from rich text editor */
.nd-body table{
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: inherit;
}

.nd-body th,
.nd-body td{
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.nd-body th {
  font-weight: 600;
  background: #f7f7f7;
  color: #222;
}

.nd-body ul li,.nd-body ol li{
  margin:10px 20px;
}

/* 引用块 —— 与后台 wangEditor 5 编辑器内样式保持一致：
   浅灰背景 + 8px 浅蓝左边条（编辑器 CSS 变量：
     --w-e-textarea-slight-bg-color: #f5f2f0
     --w-e-textarea-selected-border-color: #B4D5FF） */
.nd-body blockquote {
  display: block;
  background-color: #f5f2f0;
  border-left: 8px solid #b4d5ff;
  line-height: 1.7;
  margin: 20px 0;
  padding: 12px 16px;
  color: #333;
  border-radius: 0 4px 4px 0;
}
.nd-body blockquote p { margin: 0; }
.nd-body blockquote + p { margin-top: 24px; }

.nd-body tr:nth-child(even){
  background: #fafafa;
}

/* Prev / Next Navigation */
.nd-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nd-nav-btn {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.nd-nav-btn:hover {
  opacity: 0.6;
}

.nd-nav-center {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nd-nav-center:hover {
  color: #000;
}

.nd-nav-empty {
  flex: 1;
}

/* Share Bar */
.nd-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nd-share-label {
  font-weight: 500;
  margin-right: 4px;
}

.sharing-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sharing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #444;
  transition: all 0.2s ease;
}

.sharing-link svg {
  width: 28px;
  height: 28px;
}

.sharing-link:hover {
  color: #222;
  transform: translateY(-1px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* Author Line */
.nd-author-line {
  color: #000;
  margin-bottom: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* News Detail Responsive */

/* ===== 404 Error Page ===== */
.error404-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error404-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('/images/404.webp') center/cover no-repeat;
  z-index: 0;
}

.error404-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 40px;
  max-width: 640px;
}

.error404-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.35;
}

.error404-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.error404-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 36px;
}

.error404-btn {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.error404-btn:hover {
  background: #fff;
  color: #222;
}


/* ===== Cart Drawer (Right Slide Overlay) ===== */

/* Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0; /* 重点：靠右对齐 */
  width: 480px;
  max-width: 92vw;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  
  /* 1. 默认向右完全平移出视口（隐形状态，绝对不会撑出横向滚动条） */
  transform: translateX(100%);
  
  /* 2. 动画过渡从 right 改为 transform */
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}

.cart-drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  color: #333;
  flex-shrink: 0;
  margin-right: 14px;
  transition: all 0.2s;
}

.cart-drawer-close:hover {
  background: #f5f5f5;
}

.cart-drawer-title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}

.cart-item-count {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

/* Body */
.cart-drawer-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 10px;
}

/* Empty State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  color: #bbb;
}

.cart-empty-state svg {
  margin-bottom: 14px;
  opacity: 0.6;
}

.cart-empty-state p {
  font-size: 13px;
  margin: 0;
}

/* Items */
.cart-items-list {
  /* container */
}

.cart-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid #f2f2f2;
  gap: 12px;
  position: relative;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #f7f7f5;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0ede8, #e8e4de);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-right: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

.cart-item-name:hover {
  opacity: 0.7;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Quantity Selector */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

.qty-btn {
  width: 30px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  line-height: 1;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: #f5f5f5;
}

.qty-input {
  width: 34px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  outline: none;
  background: #fafafa;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

/* Remove Button */
.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  padding: 4px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

/* Footer */
.cart-drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}

.cart-payment-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: #777;
  background: #f7f7f5;
  padding: 9px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.cart-payment-note svg {
  flex-shrink: 0;
  color: #aaa;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
}

.cart-total-row strong {
  font-size: 17px;
  color: #000;
}

.cart-checkout-btn {
  width: 100%;
  padding: 14px 20px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.25s;
  margin-top: 6px;
}

.cart-checkout-btn:hover {
  background: #333;
}

.cart-delivery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.cart-delivery-note svg {
  flex-shrink: 0;
}

/* Cart Badge on Header Icon */
.cart-count-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  background: var(--orange-color);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  display: none; /* hidden when 0 */
}

.cart-count-badge:not(:empty) {
  display: flex;
}

/* Responsive */

/* Add to Cart Button on Product Detail */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 12px;
}


/* ========================================
   Search Page Styles
   ======================================== */
.search-page-section {
  padding: 40px 0 80px;
}

.search-page-header {
  margin-bottom: 32px;
}

.search-page-box {
  max-width: 640px;
  margin: 0 auto 40px;
}

.search-page-form {
  width: 100%;
}

.search-page-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 0 16px;
  transition: var(--transition);
}

.search-page-input-wrapper:focus-within {
  border-color: var(--primary-color);
}

.search-page-icon {
  flex-shrink: 0;
  color: var(--light-text);
  margin-right: 12px;
}

.search-page-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 0;
  font-size: 16px;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text-color);
}

.search-page-input::placeholder {
  color: #bbb;
}

.search-page-submit-btn {
  flex-shrink: 0;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.search-page-submit-btn:hover {
  opacity: 0.85;
}

/* Search Results Header */
.search-results-header {
  margin-bottom: 32px;
  text-align:center;
}

.search-results-count {
  font-size: 15px;
  color: var(--light-text);
}

.search-results-count strong {
  color: var(--text-color);
}

/* Search Results Grid */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.search-result-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  background: var(--bg-white);
}

.search-result-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.search-result-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light);
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.search-result-card:hover .search-result-img img {
  transform: scale(1.05);
}

.search-result-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
}

.search-result-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-result-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-category {
  font-size: 12px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-result-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-top: 4px;
}

/* Search Pagination */
.search-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.search-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  font-size: 13px;
  color: var(--text-color);
  transition: var(--transition);
  cursor: pointer;
}

.search-page-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.search-page-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.search-page-btn.prev,
.search-page-btn.next {
  font-size: 13px;
}

/* Random Products Section */
.search-random-section {
  text-align: center;
  margin-top: 16px;
}

.search-random-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.search-random-desc {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 36px;
}

.search-random-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.search-random-card {
  display: block;
  transition: var(--transition);
}


.search-random-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light);
}

.search-random-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.search-random-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
}

.search-random-card-name {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 0 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  z-index: 2;
  line-height: 1.3;
}

.search-random-card-category {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 2;
}


/* ========== Checkout Page Styles ========== */

/* Checkout Layout */
.checkout-layout {
    max-width: 1000px;
    margin: 0 auto;
}
.checkout-form-wrapper {
    padding-right: 0;
}

/* Cart Items */
.checkout-cart-items {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.checkout-empty-cart { color: #999; font-size: 14px; }
.checkout-empty-cart a { color: #000; text-decoration: underline; }
.checkout-items-list { margin-bottom: 12px; }
.checkout-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}
.checkout-item-row:last-child { border-bottom: none; }
.checkout-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.checkout-item-img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
}
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-no-img { background: linear-gradient(135deg, #e0e5ec 0%, #d4dce6 100%); }
.checkout-item-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.checkout-item-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-text);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checkout-item-qty { font-size: 14px; color: #888; }
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 2px solid #ddd;
    font-size: 17px;
}
.checkout-total-row strong { font-weight: 500; }
.checkout-total-row span{font-size: 16px;}

/* Success Modal */
.checkout-success-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-success-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.checkout-success-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px 48px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.checkout-success-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background: #52c41a;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 16px;
}
.checkout-success-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #000; }
.checkout-success-content p { font-size: 14px; color: #666; margin-bottom: 24px; line-height: 1.6; }

/* Notification */
.contact-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -120%);
    z-index: 10000;
    max-width: 400px;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.contact-notification.show { transform: translate(-50%, -50%); }
.notification-content { display: flex; align-items: center; padding: 16px 20px; gap: 12px; }
.notification-icon {
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-notification-success .notification-icon { background: #4caf50; color: #fff; }
.contact-notification-error .notification-icon { background: #f44336; color: #fff; }
.notification-message { flex: 1; font-size: 14px; line-height: 1.4; color: #333; }
.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}
.notification-close:hover { color: #333; }

/* ============================================================
   Contact Page (zh) — moved from inline <style> in
   templates/zh/contact.html.twig to eliminate FOUC flash
   ============================================================ */
/* ===== Contact Channel Cards Section (Chinese) ===== */
.contact-cards-section {
  padding: 80px 0;
  background-color: #f7f6f5;
}

.contact-cards-title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 12px;
}

.contact-cards-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-channel-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.channel-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--grey-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.channel-card-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888;
}

.channel-card-value {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.4;
}


/* ============================================================
   Contact Page (en) — moved from inline <style> in
   templates/en/contact.html.twig to eliminate FOUC flash
   ============================================================ */
/* ===== Contact Page - New Design (Wood Left + Dark Right) ===== */
.contact-section-new {
  padding: 0;
  border-radius: var(--radius-md);
}

.contact-section-new .contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* ===== Left Panel: Wood Texture ===== */
.contact-info-panel {
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  padding: 80px 60px;
  background-color: #d4b896;
  background-image: url('/images/wood-bg.webp');
  background-size: cover;
  background-position: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,184,150,.25) 0%, rgba(184,154,104,.35) 100%);
  pointer-events: none;
}

.contact-info-panel-title {
  font-family: var(--font-title);
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.contact-info-panel-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
  position: relative;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  position: relative;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3e2723;
  transition: all 0.25s ease;
}


.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.contact-item-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6d5544;
}

.contact-item-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

/* Follow Us */
.contact-follow-us {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.follow-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6d5544;
}

.follow-icons {
  display: flex;
  gap: 10px;
}

.follow-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3e2723;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* ===== Right Panel: Dark Form ===== */
.contact-form-panel-dark {
  padding: 80px 60px;
  background-color: #2d3035;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-right-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.form-dark-title {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.form-dark-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-form-dark {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dark-form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.dark-form-group input,
.dark-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background-color: rgba(255,255,255,.05);
  font-family: var(--font-body);
  font-size: 15px;
  color: #e0e0e0;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.dark-form-group input::placeholder,
.dark-form-group textarea::placeholder {
  color: #666;
}

.dark-form-group input:focus,
.dark-form-group textarea:focus {
  border-bottom-color: rgba(255,255,255,.5);
  background-color: rgba(255,255,255,.08);
}

.dark-form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.dark-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background-color: #efefef;
  color: #333;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
}


.dark-form-group .field-error {
  border-bottom-color: #e57373 !important;
}

/* ===== Dark Success Message ===== */
.form-success-dark {
  background: rgba(74,124,89,.15);
  border-radius: 8px;
  padding: 48px 32px;
}

.form-success-dark h2 {
  color: #e0e0e0 !important;
}

.form-success-dark p {
  color: #9aa0ab !important;
}

.form-success-dark .success-icon {
      text-align: center;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background: #52c41a;
    color: #fff;
    font-size: 28px;
}



/* ===== Legacy: Error notification (keep for compat) ===== */
.form-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.form-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.notification-icon {
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-notification-error .notification-icon {
  background: #f44336;
  color: #fff;
}

.notification-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.notification-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.notification-close:hover {
  color: #333;
}

.field-error-message {
  color: #e57373;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
}

/* 报错信息绝对定位，脱离文档流：显示时不撑高面板，
   左侧木纹面板因此不会被拉伸、背景也不会随高度重算而跳动 */
.contact-form-dark .dark-form-group {
  position: relative;
}
.contact-form-dark .field-error-message {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  z-index: 2;
}

/* ========== Sales Team Section ========== */
.sales-team-section {
  padding: 70px 0;
  background: #fff;
}
.sales-team-title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sales-team-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}
.sales-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: none;
  margin: 0;
}
.sales-team-card {
  background: #efefef;
  border-radius: 14px;
  padding: 60px 40px 48px;
  text-align: center;
}
.team-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.team-avatar img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}
.team-name {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.team-role {
  font-size: 16px;
  color: #777;
  margin: 0 0 24px;
}
.team-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  border-top: 1px solid #ddd;
  padding-top: 22px;
}
.team-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #444;
  padding: 8px 0;
  line-height: 1.5;
}
.team-contacts li svg {
  flex-shrink: 0;
  opacity: .65;
}
.team-contacts a {
  color: #444;
  text-decoration: none;
  transition: color .2s;
}
.team-contacts a:hover {
  color: #f60;
}


/* ===== Cases List Page - New Layout (Clients / Featured / Masonry) ===== */
.cases-clients-section {
  padding: 80px 0 0;
  text-align: center;
}

.cases-clients-title {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}

.cases-clients-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.cases-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.cases-stat-item {
  text-align: center;
}

.cases-stat-number {
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  margin-bottom: 8px;
}

.cases-stat-suffix {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}

.cases-stat-label {
  font-size: 14px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cases-featured-section {
  margin-bottom: 70px;
}

.cases-featured-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  text-decoration: none;
}

.cases-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.cases-featured-card .case-placeholder-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.cases-featured-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  text-align: center;
  padding: 40px;
  transition: background 0.3s ease;
}

.cases-featured-card:hover .cases-featured-overlay {
  background: rgba(0, 0, 0, 0.46);
}

.cases-featured-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cases-featured-desc {
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
}

.cases-featured-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.cases-featured-card:hover .cases-featured-btn {
  background: #000;
  color: #fff;
}

.cases-projects-section {
  padding-bottom: 80px;
}

.cases-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 32px;
}


/* ========================================
   Solutions Page (/solutions)
   高对比度：黑白 + 灰底面板，副本与 home/about 保持设计语言一致
   ======================================== */

/* ---- 1. HERO — 5 格拼贴 + 暗色蒙层 ---- */
.solutions-hero { padding: 28px 0 0; }
.solutions-hero-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: clamp(420px, 56vh, 560px);
}
.solutions-hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.solutions-hero-tile { position: relative; overflow: hidden; }
.solutions-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solutions-hero-tile-1 { grid-column: 1; grid-row: 1 / span 2; }
.solutions-hero-tile-2 { grid-column: 2; grid-row: 1; }
.solutions-hero-tile-3 { display: none; }
.solutions-hero-tile-4 { display: none; }
.solutions-hero-tile-5 { grid-column: 2; grid-row: 2; }

.solutions-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.46);
  text-align: center;
  padding: 32px 24px;
}
.solutions-hero-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.solutions-hero-title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
}
.solutions-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #f3f3f3;
  max-width: 640px;
  margin: 0;
}

/* ---- Hero 图片使用 about-gallery-section 样式 ---- */
.solutions-hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
}
.solutions-hero-gallery .about-gallery-grid,
.solutions-hero-gallery .about-gallery-carousel {
  height: 100%;
}
.solutions-hero-gallery .about-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.solutions-hero-gallery .gallery-item {
  border-radius: 0;
  height: 100%;
}
.solutions-hero-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}
.solutions-hero-card .solutions-hero-overlay {
  z-index: 2;
}
.solutions-hero-card .solutions-hero-inner {
  z-index: 3;
  position: relative;
}
.solutions-hero-gallery .about-gallery-carousel,
.solution-detail-hero-gallery .about-gallery-carousel {
  position: relative;
  padding-bottom: 72px;
}
.solutions-hero-gallery .about-gallery-carousel .gallery-track,
.solution-detail-hero-gallery .about-gallery-carousel .gallery-track {
  height: calc(100% - 72px);
}
.solutions-hero-gallery .about-gallery-carousel .carousel-controls,
.solution-detail-hero-gallery .about-gallery-carousel .carousel-controls {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin-top: 0;
  z-index: 10;
}

/* ---- 2. 简介灰底面板 ---- */
.solutions-intro-section { padding: 60px 0;}
.solutions-intro-card {
  background: #efefef;
  border-radius: var(--radius-md);
  padding: 56px 64px;
  background: linear-gradient(180deg, rgba(230, 230, 220, 1), rgba(230, 230, 220, 1) 100%); 
}
.solutions-intro-title {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin: 0 0 18px;
  line-height: 1.4;
}
.solutions-intro-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
  margin: 0 0 22px;
  max-width: 880px;
}
.solutions-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solutions-intro-list li {
  font-size: 14.5px;
  line-height: 1.7;
  color: #000;
  padding: 10px 0 10px 18px;
  position: relative;
}
.solutions-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

/* ---- 3. Venue 分类网格 (2 列 × 3 行) ---- */
.solutions-venue-section {  }
.solutions-section-title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px;
  text-align: center;
}
.solutions-section-desc {
  font-size: 16px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.solutions-venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solutions-venue-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solutions-venue-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f3f3;
}
.solutions-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solutions-venue-name {
  padding: 16px 18px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.solutions-venue-cta {
  text-align: center;
  margin-top: 32px;
}
.solutions-venue-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #000;
  color: #000;
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.solutions-venue-btn:hover { background: #000; color: #fff; }

/* ---- 4. Trusted 统计 + bento ---- */
.solutions-trusted-header { text-align: center; margin:60px 0; }
.solutions-trusted-title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  margin: 0 0 10px;
}
.solutions-trusted-sub {
  font-size: 14px;
  color: #666;
  margin: 0 0 28px;
}
.solutions-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 820px;
  margin: 0 auto;
}
.solutions-stat-item { text-align: center; }
.solutions-stat-number {
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  margin-bottom: 6px;
}
.solutions-stat-suffix {
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.solutions-stat-label {
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solutions-trusted-bento { padding-top: 24px; }
.solutions-bento-grid { gap: 16px; }

/* ---- 5. Project Works 4 卡 ---- */
.solutions-projects-section { padding: 60px 0; }
.solutions-projects-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.solutions-project-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.solutions-project-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}
.solutions-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.solutions-project-name {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin: 14px 16px 4px;
  line-height: 1.4;
}
.solutions-project-text {
  font-size: 13px;
  color: #666;
  margin: auto 16px 12px;
  line-height: 1.6;
  min-height: 44px;
}

/* ---- 7. FAQ ---- */
.solutions-faq-section { padding: 60px 40px; background: #fff; }
.solutions-faq-title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  color: #000;
  margin: 0 0 36px;
}
.solutions-faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid #e5e5e5;
}
.solutions-faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.solutions-faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 44px 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  position: relative;
  outline: none;
}
.solutions-faq-item > summary::-webkit-details-marker { display: none; }
.solutions-faq-icon {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}
.solutions-faq-icon::before,
.solutions-faq-icon::after {
  content: '';
  position: absolute;
  background: #000;
  transition: transform 0.2s ease;
}
.solutions-faq-icon::before { top: 6px; left: 0; right: 0; height: 2px; }
.solutions-faq-icon::after { left: 6px; top: 0; bottom: 0; width: 2px; }
.solutions-faq-item[open] .solutions-faq-icon::after { transform: scaleY(0); }
.solutions-faq-body {
  padding: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #444;
}
.solutions-faq-body p { margin: 0; }


.solution-detail-hero-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0;
}
.solution-detail-hero-gallery .about-gallery-grid,
.solution-detail-hero-gallery .about-gallery-carousel {
  height: 100%;
}
.solution-detail-hero-gallery .about-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.solution-detail-hero-gallery .gallery-item {
  border-radius: 0;
  height: 100%;
}
.solution-detail-hero-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}

.solution-detail-intro { padding: 70px 0 30px; background: #f8f8f6; }
.solution-detail-intro-card { background: #fff; padding: 48px 56px; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.solution-detail-intro-title { font-size: 28px; font-weight: 600; color: #111; margin: 0 0 16px; }
.solution-detail-intro-desc { font-size: 16px; line-height: 1.7; color: #444; margin: 0 0 26px; }
.solution-detail-intro-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.solution-detail-intro-list li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.6; color: #333; }
.solution-detail-intro-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: #111; }

.solution-detail-range {  }
.solution-detail-section-title { font-size: 40px; font-weight: 500; text-align: center;  }
.solution-detail-section-desc { font-size: 16px; text-align: center;  max-width: 720px; margin: 0 auto 40px; }
.solution-detail-range-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.solution-detail-range-item { display: block; text-decoration: none; color: inherit; }
.solution-detail-range-img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 8px; background: #f4f4f4; }
.solution-detail-range-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.solution-detail-range-item:hover .solution-detail-range-img img { transform: scale(1.05); }
.solution-detail-range-name { font-size: 15px; font-weight: 500; color: #111; margin: 12px 0 0; text-align: center; }
.solution-detail-range-cta { text-align: center; margin-top: 40px; }
.solution-detail-btn-outline { display: inline-block; padding: 12px 28px;  border-radius: 4px; color: #fff; font-size: 14px; background: #000; text-decoration: none;  }

.solution-detail-trusted {  }
.solution-detail-trusted-header { text-align: center; margin-bottom: 40px; }
.solution-detail-trusted-title { font-size: 30px; font-weight: 600; color: #111; margin: 0 0 10px; }
.solution-detail-trusted-sub { font-size: 15px; color: #555; margin: 0 0 30px; }
.solution-detail-stats-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.solution-detail-stat-item { text-align: center; }
.solution-detail-stat-number { font-size: 44px; font-weight: 700; color: #111; line-height: 1; }
.solution-detail-stat-number span { font-weight: 400; }
.solution-detail-stat-label { font-size: 14px; color: #555; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.solution-detail-trusted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.solution-detail-trusted-item { display: block; text-decoration: none; color: inherit; }
.solution-detail-trusted-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; }
.solution-detail-trusted-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.solution-detail-trusted-item:hover .solution-detail-trusted-img img { transform: scale(1.05); }
.solution-detail-trusted-name { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 16px; font-size: 16px; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.65)); }

.solution-detail-cases { padding: 70px 0; background: #fff; }
.solution-detail-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-detail-case-card { display: block; text-decoration: none; color: inherit; }
.solution-detail-case-img { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 8px; background: #f4f4f4; }
.solution-detail-case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.solution-detail-case-card:hover .solution-detail-case-img img { transform: scale(1.05); }
.solution-detail-case-title { font-size: 17px; font-weight: 600; color: #111; margin: 16px 0 6px; }
.solution-detail-case-link { font-size: 14px; font-weight: 500; color: #555; text-decoration: underline; text-underline-offset: 3px; }
.solution-detail-case-card:hover .solution-detail-case-link { color: #111; }

.solution-detail-faq { padding: 60px 0; }
.solution-detail-faq-title { font-size: 40px;  text-align: center;  margin: 0 0 40px; }
.solution-detail-faq-list { max-width: 820px; margin: 0 auto; }
.solution-detail-faq-item { background: #fff; border-radius: 8px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.solution-detail-faq-item > summary { list-style: none; cursor: pointer; padding: 20px 24px; font-size: 16px; font-weight: 500; color: #111; display: flex; justify-content: space-between; align-items: center; }
.solution-detail-faq-item > summary::-webkit-details-marker { display: none; }
.solution-detail-faq-icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; margin-left: 16px; }
.solution-detail-faq-icon::before, .solution-detail-faq-icon::after { content: ''; position: absolute; background: #111; transition: transform 0.2s ease; }
.solution-detail-faq-icon::before { top: 6px; left: 0; right: 0; height: 2px; }
.solution-detail-faq-icon::after { left: 6px; top: 0; bottom: 0; width: 2px; }
.solution-detail-faq-item[open] .solution-detail-faq-icon::after { transform: scaleY(0); }
.solution-detail-faq-body { padding: 0 24px 20px; font-size: 15px; line-height: 1.7; color: #444; }
.solution-detail-faq-body p { margin: 0; }


/* ===== Responsive / Mobile Styles ===== */

@media (max-width: 1024px) {
  .case-card-title{
    text-align: left;
    padding-left:0;
    padding-right: 0;
  }
  .media-text-image{
    width: auto;
    height: auto;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-grid{
    padding:0 40px;
  }
  .service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    align-items: start;
    margin-left: 0;
    margin-right: 0;
  }

  .service-item {
    min-width: unset;
    max-width: unset;
  }

  .about-feature-grid {
    gap: 30px;
    align-items: stretch;
  }

  .feature-image {
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
  }

  .feature-image img {
    height: 100%;
    object-fit: cover;
  }

  .about-cta-grid {
    gap: 30px;
    align-items: stretch;
  }

  .cta-image {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .cta-image img {
    height: 100%;
    object-fit: cover;
  }

  .media-title {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .products-grid-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 14px;
  }

  .filter-group {
    gap: 6px;
  }

  .filter-dropdown-btn {
    padding: 7px 12px;
    font-size: 10px;
  }

  .feature-specs-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  
  .collection-card-name{
    font-size:16px;
  }

  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .search-random-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nd-body{
    max-width: 600px;
  }

   .news-item-title{
    font-size: 20px;
  }

  /* Service guarantee icons ("WITH YOU FOR THE LONG TERM"): 4 columns.
     Shared component appears on products list and product detail pages. */
  .service-items {
    grid-template-columns: repeat(4, 1fr);
  }


  .cd-content-section{
    padding: 40px 0;
    max-width: 100%;
   }

   .news-item-title{
    font-size: 20px;
   }

  .home-commercial-spaces-header {
    align-items: center;
    gap: 20px;
  }

  .home-stats-row {
    max-width: 600px;
    gap: 20px;
  }

  .home-planning-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}


/* iPad Air / iPad Pro portrait (801–1024px) */
@media (min-width: 801px) and (max-width: 1024px) {
  /* Home "New Project" cases: 4 columns (overrides @media(max-width:1024px) rule).
     iPad Mini portrait (768–800px) keeps 2 columns from that rule. */
  


}

/* ===== Tablet (iPad Mini / Air / Pro portrait 768–1024) ==========================
   Unified 40px side gutter for ALL pages, mirroring the desktop model where
   .main-content owns the gutter and inner sections have no horizontal padding.
   Phones (<768px) keep the mobile per-section 16/20px paddings. */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Single 40px gutter source (same as desktop). Restores the horizontal padding
     the mobile block zeroed out. Keeps the fixed-header top offset. */
 

  /* Homepage hero fills the padded content box → 40px gutters automatically.
     Just restore the rounded corners the mobile block flattened. */
  .hero-inner {
    border-radius: var(--radius-md);
  }
  .hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .categories-gallery {
    padding: 60px 0;
  }

  /* Zero the mobile-added horizontal padding on page-level content sections so
     they rely on .main-content's 40px gutter (matches desktop). Vertical padding
     is preserved. Component boxes with intentional inner padding (colored/CTA
     cards, dark form panels) are deliberately excluded. */
  .products-list-section,
  .cases-header-section,
  .cases-grid-section .cases-card-grid,
  .news-header-section,
  .news-grid-section,
  .news-grid-section .news-card-grid,
  .nd-content-section,
  .cd-faq-section,
  .about-feature-section,
  .about-cta-section,
  .about-team-section,
  .products-cta-section,
  .our-collections-section,
  .search-page-section,
  .pd-blog-section {
    padding-left: 0;
    padding-right: 0;
  }

  

  /* Contact page: sales team section relies on main-content gutter */
  .sales-team-section {
    padding: 70px 0;
  }

  /* Contact form: ensure error messages don't overlap labels on tablet */
  .contact-form-panel-dark {
    padding: 50px 28px;
  }
  .contact-form-dark {
    gap: 24px;
  }
  .dark-form-row {
    gap: 24px;
  }
  .field-error-message {
    margin-bottom: 10px;
  }
}


/**ipad air**/
@media (max-width: 820px) {
  /* Fixed compact header (same layout as mobile) */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    border-bottom: 1px solid rgb(226, 226, 226);
    background-color: #fff;
    z-index: 1000;
  }

  .header-container {
    height: 100%;
  }

  .header-top {
    padding: 0 40px;
    height: 100%;
  }

  .header-top-inner {
    padding:0;
    height: 100%;
  }

  /* Show mobile header elements */
  .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-left .mobile-menu-toggle {
    display: flex;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  .header-top-spacer,
  .header-icons {
    display: none;
  }

  .header-top .logo-mobile {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .logo-image {
    height: 52px;
    width: auto;
    display: block;
  }

  /* Hide desktop nav row completely */
  .header-bottom {
    display: none !important;
  }

  /* Account for fixed header height */
  .main-content {
    padding-top: 56px;
  }

  /* ===== Mobile Navigation Panel (full styling for tablet) ===== */
  .mobile-nav {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1000;
    flex-direction: column;
  }

  .mobile-nav.open {
    display: flex !important;
  }

  /* --- Top Bar (Close | Logo | Search+Cart) --- */
  .mobile-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 56px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .mobile-nav-left {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 80px;
    justify-content: flex-start;
  }

  .mobile-nav-close-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    cursor: pointer; color: #222;
  }

  .mobile-nav-bar .logo-mobile {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center;
  }

  .mobile-nav-bar .header-right {
    display: flex; align-items: center;
    gap: 4px;
    width: 80px;
    justify-content: flex-end;
  }

  /* --- Panels Container --- */
  .mobile-nav-panels {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  .mobile-nav-panel {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 0;
  }

  .mobile-nav-panel.active {
    transform: translateX(0);
    opacity: 1;
  }

  .mobile-nav-panel[data-level="0"] {
    transform: translateX(0);
    opacity: 1;
  }

  /* --- Panel Header (Back + Title) --- */
  .mobile-nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .mobile-nav-back-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    cursor: pointer; color: #222;
  }

  .mobile-nav-panel-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    text-align: center;
  }

  /* --- Panel Body --- */
  .mobile-nav-panel-body {
    padding: 8px 0;
  }

  /* --- Menu Items (Main level) --- */
  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #f5f5f5;
    text-align: left;
    text-decoration: none;
  }
  .mobile-nav-link.active { color: var(--primary-color, #c49a6c); }

  /* --- Row items (with arrow/plus) --- */
  .mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-row:active { background: #f9f9f9; }

  .mobile-nav-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
  }

  .mobile-nav-subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #000;
  }

  .mobile-nav-arrow {
    font-size: 22px;
    color: #444;
    flex-shrink: 0;
    margin-left: 12px;
  }

  /* --- Submenu items --- */
  .mobile-nav-subitem {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
  }
  .mobile-nav-subitem::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    font-size: 20px;
  }

  .mobile-nav-sublink {
    display: block;
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    border-bottom: 1px solid #f7f7f7;
    position: relative;
  }
  .mobile-nav-sublink::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
  }

  /* --- Mobile Nav Promo Cards --- */
  .mobile-nav-promo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    margin-top: 0;
    border-top: 1px solid #f5f5f5;
  }

  .mobile-nav-promo-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    text-decoration: none;
    line-height: 0;
    margin: 0;
    padding: 0 !important;
  }

  .mobile-nav-promo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
  }

  .mobile-nav-promo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: var(--font-title);
    z-index: 1;
    line-height: 1.4;
  }

  /* Prevent desktop dropdown overlay on tablet */
  .dropdown-menu-overlay {
    display: none !important;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

   .sales-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .cases-clients-section {
    padding: 60px 0 20px;
  }

  .cases-featured-card {
    aspect-ratio: 16 / 9;
  }
 
}




@media (max-width: 768px) {
   .main-content {
    padding-left: 40px;
    padding-right: 40px;
  }

   .partner-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

   .cases-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bento-group {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    aspect-ratio: auto;
    gap: 20px;
  }
  .bento-item {
    grid-area: auto !important;
    aspect-ratio: 4 / 3;
  }
  .bento-item .case-item-img {
    aspect-ratio: 4 / 3;
  }
  .home-planning-cta-content{
    padding:20px;
  }
  .home-planning-cta-btn{
    margin-bottom: 20px;
  }

  .home-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .home-stat-number {
    font-size: 40px;
  }

  .home-planning-cta-section {
    padding: 30px 20px 60px;
  }

  .home-planning-cta-inner {
    padding: 28px 24px;
  }
  .case-card-title{
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
  /* About page gallery: 2-column grid, hide carousel on tablet. */
  .about-gallery-section {
    padding-left: 0;
    padding-right: 0;
  }
  .about-gallery-grid {
    display: grid ;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
   .about-gallery-carousel {
    display: none;
  }
  /**contact*/
  .contact-cards-section {
    padding: 60px 0;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-channel-card {
    padding: 32px 24px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .channel-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .contact-faq-section {
    padding: 20px;
  }
  .contact-info-panel {
    padding: 48px 28px;
  }

  .contact-form-panel-dark {
    padding: 48px 28px;
  }

 

  .dark-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Ensure error messages don't overlap with next field label */
  .field-error-message {
    margin-bottom: 10px;
  }

  .submit-btn-green {
    width: 100%;
  }

    .contact-section-new .contact-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-info-panel, .contact-form-panel-dark {
    padding: 60px 40px;
    border-radius: var(--radius-md);
  }

  .checkout-layout { max-width: 100%; padding:20px;}
    .checkout-item-img { width: 44px; height: 44px; }
    .checkout-item-name { font-size: 14px; }
    .checkout-item-img{width:80px;height:80px;}
  .header-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }
 
 
  .cd-faq-section{
    padding:40px 20px;
  }
  .about-feature-section{
    padding:40px 20px;
  }  
  .about-story-section{
    margin-bottom:10px;
  }
  .about-cta-section{
    padding:40px 20px;
  }
  .about-story-title{
    font-size:24px;
  }
  .about-hero-title{
    margin:45px 0;
  }
  .about-hero-desc{
    margin-bottom:45px;
  }
  .cta-heading{
    font-size:24px;
  }
  .about-story-content{
    padding:40px 20px;
  }

  .about-team-section{
    padding:60px 20px;
  }
  .contact-faq-section{
    padding:20px;
  }
  .contact-section{
    padding:0;
  }

  .team-name{
    font-size:24px;
  }
  .team-role{
    font-size:18px;
  }
  .feature-title{
    font-size:24px;
  }   
  /** product detail page**/
  .product-detail-section{
    padding-top:0;
  }
  
  .pd-faq-section{
    padding:20px 0;
  }
  .pd-related-info{
    padding:0;
  }

  .pd-related-name{
    text-align: left;
  }

  .pd-blog-section{
    padding:20px;
  }
 
 
  .search-page-submit-btn{
    padding: 12px 16px;
  }
 

  .products-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

  .filter-bar {
    justify-content: center;
  }

  /* Category Filter Bar - Mobile (border tabs like reference) */
  .category-filter-bar {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .category-filter-bar::-webkit-scrollbar { display: none; }

  .category-option {
    padding: 9px 18px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: rgb(239,239,239);
    color: #000;
    flex-shrink: 0;
  }
 
  .category-option.active {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .filter-group {
    justify-content: center;
  }

  .product-name-modern {
    font-size: 14px;
    text-align: left;
  }

  .product-info-modern {
    padding: 12px 0;
  }

  .product-feature-section,
  .service-guarantee-section,
  .faq-section,
  .products-cta-section {
    padding: 50px 20px;
  }



  .feature-main-title {
    font-size: 20px;
  }

  .about-hero-section{
    padding:0;
  }

  .service-item {
    min-width: unset;
    max-width: unset;
  }

  .service-icon svg {
    width: 80px;
    height: 80px;
  }

  


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0;
  }


  /* Mobile List Category*/
  .products-list-section{
    padding:40px 20px;
  }

  .case-item-title{
    font-size:14px;
    margin-bottom:12px;
    text-align: left;
  }

  .cases-header-section{
    padding:40px 20px 0 16px
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    border-bottom: 1px solid rgb(226, 226, 226);
    background-color: #fff;
    z-index: 1000;
  }

  .header-container {
    height: 100%;
  }

  

  .header-top-inner {
    height: 100%;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-left .mobile-menu-toggle {
    display: flex;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap:4px;
    flex-shrink: 0;
  }

  .header-top-spacer,
  .header-icons {
    display: none;
  }

  .header-top .logo-mobile {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .logo-image {
    height: 52px;
    width: auto;
    display: block;
  }

  /* Hide PC header-bottom completely on mobile */
  .header-bottom {
    display: none !important;
  }

  /* ===== Mobile Navigation (Panel Slide-in) ===== */
  .mobile-nav {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1000;
    flex-direction: column;
  }

  .mobile-nav.open {
    display: flex !important;
  }

  /* --- Top Bar (X | Search | Logo | Cart) --- */
  .mobile-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height:56px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .mobile-nav-left {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 80px;
    justify-content: flex-start;
  }

  .mobile-nav-close-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    cursor: pointer; color: #222;
  }

  /* Logo & icons reuse header classes — position overrides for nav bar */
  .mobile-nav-bar .logo-mobile {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center;
  }
  .mobile-nav-bar .header-right {
    display: flex; align-items: center;
    gap: 4px;
    width: 80px;
    justify-content: flex-end;
  }

  /* --- Panels Container --- */
  .mobile-nav-panels {
    flex: 1;
    overflow: hidden;
    position: relative;
  }

  /* Each panel: full size, positioned absolutely, slide in/out */
  .mobile-nav-panel {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 0;
  }

  .mobile-nav-panel.active {
    transform: translateX(0);
    opacity: 1;
  }

  /* Level 0 main panel is visible by default */
  .mobile-nav-panel[data-level="0"] {
    transform: translateX(0);
    opacity: 1;
  }

  /* --- Panel Header (Back + Title) --- */
  .mobile-nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .mobile-nav-back-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    cursor: pointer; color: #222;
  }

  .mobile-nav-panel-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    text-align: center;
  }

  /* --- Panel Body --- */
  .mobile-nav-panel-body {
    padding: 8px 0;
  }

  /* --- Menu Items (Main level) --- */
  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #f5f5f5;
    text-align: left;
    text-decoration: none;
  }
  .mobile-nav-link.active { color: var(--primary-color, #c49a6c); }

  /* --- Row items (with arrow/plus) --- */
  .mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-row:active { background: #f9f9f9; }

  .mobile-nav-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
  }

  .mobile-nav-subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #000;
  }

  .mobile-nav-arrow {
    font-size: 22px;
    color: #444;
    flex-shrink: 0;
    margin-left: 12px;
  }

  /* --- Submenu items --- */
  .mobile-nav-subitem {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
  }
  .mobile-nav-subitem::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    font-size: 20px;
  }

  .mobile-nav-sublink {
    display: block;
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    border-bottom: 1px solid #f7f7f7;
    position: relative;
  }
  .mobile-nav-sublink::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
  }

  /* --- Mobile Nav Promo Cards --- */
  .mobile-nav-promo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    margin-top: 0;
    border-top: 1px solid #f5f5f5;
  }

  .mobile-nav-promo-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    text-decoration: none;
    line-height: 0;
    margin: 0;
    padding: 0 !important;
  }

  .mobile-nav-promo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
  }

  .mobile-nav-promo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: var(--font-title);
    z-index: 1;
    line-height: 1.4;
  }

  /* --- Mobile Nav Footer (页面底部Footer移动端) --- */
  .footer {
    padding: 0;
  }

  .footer-social {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social .social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-social .social-icon svg {
    height: 16px;
  }

  .footer-up-btn {
    max-width: 100%;
    padding: 12px 20px;
    font-size: 13px;
  }

  .mfooter-text {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    padding: 4px 0;
    margin: 0 !important;
  }

  .mfooter-copyright {
    padding: 20px 24px;
    text-align: center;
    font-size: 12px;
    color: #999;
  }

  /* Footer new layout to match provided design */
  .footer-bottom {
    padding: 26px 24px;
    text-align: center;
    background: var(--light-color);
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #222;
    background: transparent;
    border-radius: 4px;
    text-decoration: none;
  }

  .footer-social svg { width:18px; height:18px; }

  .footer-accessibility {
    font-size: 13px;
    color: #666;
    margin: 6px 0 10px;
  }

  .footer-copyright-text {
    font-size: 12px;
    color: #888;
    margin: 6px 0;
  }

  .footer-legal-links {
    font-size: 12px;
    margin: 4px 0 6px;
  }

  .footer-up-btn {
    display: inline-block;
    margin: 18px auto 0;
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 56px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
  }


  .home-more-inner{
    padding:0 20px;
  }

 
  .footer-social { gap: 10px; }
  .footer-up-btn { width: 80%; padding: 12px 0; margin-bottom: -20px;}
  .footer-accessibility { padding: 0 12px; }
  

  /* Hero mobile - 撑满屏幕 */
  .hero-section {
    margin: 0;
    width: 100%;
  }

  .hero-inner {
    height: 480px;
    max-width: none;
  }

  .hero-overlay {
    padding: 24px 20px;
  }

  /* Gallery mobile - carousel */
  .categories-gallery {
    padding: 32px 0 16px 0;
    overflow: hidden;
  }

  /* Carousel layout — only revealed on phones (≤576px); see @media (max-width: 576px) below */
  .gallery-carousel {
    position: relative;
  }

  .gallery-track {
    display: flex;
    transition: transform 0.4s ease;
  }

  .gallery-track .gallery-card {
    flex: 0 0 calc(100% - 40px);
    margin: 0 20px;
  }

  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding: 0 8px;
  }

  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .carousel-dots {
    gap: 8px;
    width: 192px;
    align-items: center;
    text-align: center;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin:10px;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .carousel-dot.active {
    background: var(--primary-color);
  }

  .news-header-section{
    padding-top:40px;
  }

  /* Media text mobile */
  .media-text-inner {
    padding: 0 20px;
  }

  .media-text-row,
  .media-text-row.reverse {
    flex-direction: column;
  }

  .media-text-content {
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .media-text-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: none;
  }

  .media-text-content .media-btn {
    display: inline-flex;
    align-self: auto;
  }

  /* Reviews mobile */
  .reviews-inner {
    padding: 0 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px 20px;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:16px;
    padding:0 20px;
  }
  


  .product-image-box {
    min-height: 280px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .product-image-box img{
    max-height: auto;
  }

  /* Service Bar Responsive */
  .pd-service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px;
  }

  .pd-service-item span {
    font-size: 11px;
  }

  /* Related Grid Responsive */
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


  /* You May Like Grid Responsive */
  .pd-you-like-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pd-you-like-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  
 

  .cases-main-desc {
    font-size: 13px;
    margin-bottom: 28px;
  }

   .contact-form-panel-dark{
    margin-top:20px;
  }


 

  .cd-featured-section {
    padding: 24px 16px;
  }

  .cd-btn-row {
    flex-direction: column;
    align-items: center;
  }

  .cd-action-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .cd-faq-title {
    font-size: 20px;
  }

  .cd-bottom-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  
  /**news detail**/
  .news-item-meta{
    margin-top:2px;
  }

  .nd-detail-header {
    padding-top: 32px;
    margin-bottom: 28px;
  }



  .nd-publish-time {
    font-size: 14px;
  }

  .nd-content-section {
    padding: 0px 20px;
  }

  .nd-body {
    font-size: 16px;
    margin-bottom: 32px;
  }
 

  .nd-nav {
    flex-direction: column;
    gap: 12px;
  }

  .nd-nav-btn,
  .nd-nav-center {
    text-align: center;
  }

  .nd-body th,
  .nd-body td {
    padding: 8px 10px;
    font-size: 13px;
  }

  .nd-body img{
    width: auto;          /* 不拉伸小图 */
    max-width: 100%;      /* 最多满屏宽 */
    margin: 20px auto;
  }

  /* 移动端：含图段落取消宽容器与 transform，图片回归正常流式满宽 */
  .nd-body p:has(img){
    width: auto;
    margin-left: auto;
    transform: none;
  }

  .error404-title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .error404-content {
    padding: 40px 24px;
  }

  .search-page-section {
    padding: 24px 0 60px;
  }

  

  .search-page-box {
    padding: 0 16px;
  }

  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .search-random-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

 

  .search-result-name {
    font-size: 13px;
  }
  .our-collections-section{
    padding:40px 20px;
  }
 

   .sales-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
   .news-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .index .cases-grid{
    grid-template-columns: repeat(2, 1fr);
  }
   .cases-grid  {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
 

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }

  .cart-item-img {
    width: 64px;
    height: 64px;
  }

  .cart-item-name {
    font-size: 14px;
  }
}

/** mobile only control **/
@media (max-width: 480px) {
  /* 移动端修复左侧边距 */
  .product-detail-section .container,
  .pd-service-bar .container,
  .pd-faq-section .container,
  .pd-related-section .container,
  .pd-blog-section .container {
    padding: 0 16px;
  }

  .index .cases-grid{
    grid-template-columns: repeat(1, 1fr);
  }

   .main-content {
    padding: 0;
    padding-top: 56px;
  }

  .header-top {
    padding: 0 16px;
    height: 100%;
  }
   .gallery-carousel {
    display: block;
  }

   .media-text-inner-top {
    padding: 8px 0 20px;
  }

  .case-card-title{
    padding:16px 0;
  }
  .case-studies-section .section-title{
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 24px;
  }
   .cases-main-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .media-title{
    font-size: 24px;
    margin-top:0px;
  }
  .hero-title{
    font-size: 24px;
  }

  .index-service .service-guarantee-section{
    margin: 30px 0 40px;
  }

  .pd-related-title {
    font-size: 24px;
  }

    .nd-title {
    font-size: 24px;
  }

  .pd-blog-title {
    font-size: 24px;
  }
  .product-name-main {
    font-size: 24px;
  }

   .cd-title {
    font-size: 24px;
    padding: 0 40px;
  }
 .contact-info-panel-title,
  .form-dark-title {
    font-size: 24px;
  }

   .products-page-title {
    font-size: 24px;
    margin: 0 auto;
  }
  .search-random-title {
    font-size: 24px;
  }
  .collections-title{
    font-size:24px;
  }

  .pd-service-title{
    font-size:24px;
  }
  .pd-faq-title{
    font-size:24px;
  }
    /**home**/
  .home-more-inner .section-title{
    font-size:24px;
  }
   .contact-form-title{
    font-size:24px;
  }

   .form-group label{
    font-size: 16px;
  }
  /* About Gallery: hide grid, show carousel */
  .about-gallery-grid {
    display: none !important;
  }

   .gallery-grid {
    display: none !important;
  }

  .products-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding:0;
  }

  /** contact*/
  .faq-section-title{
    font-size: 24px;
  }
  

  .about-gallery-carousel {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .about-gallery-carousel .gallery-track {
    display: flex;
    transition: transform 0.4s ease;
  }

  .about-gallery-carousel .gallery-item {
    flex: 0 0 calc(100% - 40px);
    margin: 0 20px;
    border-radius: 8px;
  }

  .about-feature-grid,
  .about-team-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-team-grid.reverse .team-image,
  .about-team-grid.reverse .team-info {
    order: initial;
  }
 .sales-team-title{
  font-size:24px;
 }
  .about-hero-title {
    font-size: 24px;
  }

  .faq-title,
  .service-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 24px;
  }

  .about-hero-section{
    padding:0 20px;
  }

  .product-detail-grid-new {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* 移动端：图片在上，文字在下 */
  .product-info-left {
    order: 2;
    padding-right: 0;
  }

  .product-image-right {
    order: 1;
    position: static;
  }
 

   .cases-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding:0 20px;
  }
  .bento-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .filter-dropdown-btn {
    padding: 6px 10px;
    font-size: 9px;
  }
  .contact-info-panel, .contact-form-panel-dark{
    padding:60px 20px;
  }

  .contact-section-new{
    padding: 0 20px;
  }

  /* Product Detail Service Grid - Mobile Fix */
  .pd-service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 12px;
  }

  .pd-service-item svg {
    width: 48px;
    height: 48px;
  }

  .pd-service-item span {
    font-size: 11px;
  }

  /**news list**/
  .news-main-title {
    font-size: 24px;
    margin-bottom: 20px;
  }


  .news-header-section {
    padding: 40px 20px 0;
  }
  .news-grid-section{
    padding:0 20px;
  }
  .news-item-title{
    font-size:16px;
    font-weight:400;
  }
  .news-card-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .cases-grid  {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
  .case-studies-inner{
    padding:0 20px;
  }
  .case-item-label{
    left:5px;
    padding: 6px 4px;
  }

  /**card**/
  .mobile-nav-promo-title{
    font-size: 18px;
  }
  .home-stat-number{
    font-size: 32px;
  }
  .home-stat-label{
    font-size: 12px;
  }
  .home-projects-showcase-section{
    padding-top:24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .partner-brands-inner{
    padding: 0 20px;
  }
  /* Related Products - 2x2 Grid on Mobile */
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pd-related-name {
    font-size: 14px;
    text-align: left;
    margin-bottom: 0;
  }

  .pd-related-category {
    font-size: 12px;
  }

  .service-items {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    align-items: start;
  }

  /**case list**/
  .cases-grid-section{
    padding-top:0;
  }

  .mobile-nav-promo-card img{
    height: 140px;
  }
  .collections-grid{
    padding:0;
  }
  .sales-team-section { padding: 50px 20px; }
  .sales-team-grid {
    grid-template-columns: 1fr;
  }

  /**search**/
  .products-search-list-section{
    padding:40px 0;
  }
 
  .search-page-title{
    font-size: 24px;
    margin-top:0;
  }

  .home-planning-cta-content{
    padding:32px 20px;
  }

  .media-text-content{
    padding:20px;
  }

  .media-text-image{
    padding: 0 20px;
  }
  .home-commercial-spaces-title{
    font-size: 24px;
  }
   .home-commercial-spaces-section {
    padding: 0 20px;
  }
  .home-planning-cta-title {
    font-size: 24px;
  }
 
  /**case list**/
  .cases-projects-section{
    padding:0 20px;
  }
   .cases-clients-section {
    padding: 40px 20px 20px;
  }
  .cases-clients-title {
    font-size: 24px;
  }
  .cases-clients-desc {
    margin: 20px 0;
  }
  .cases-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .cases-stat-number {
    font-size: 32px;
  }
  .cases-stat-label {
    font-size: 12px;
  }
  .cases-featured-section {
    margin: 0 20px 50px;
  }
  .cases-featured-card {
    aspect-ratio: 4 / 3;
  }
  .cases-featured-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .cases-featured-desc {
    display: none;
  }
  .cases-featured-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .cases-section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .category-filter-bar.sub-filter-bar{
    margin:20px 0;
  }
  .news-category-header-description{
    margin:20px 0;
  }
  .about-hero-title{
    margin:20px 0;
  }
  .about-hero-desc{
    margin-bottom: 20px;
  }
}

/* ============================================================
   Unified page title top spacing
   PC: 40px / Mobile (<480px): 20px
   ============================================================ */
.products-list-section,
.product-detail-section,
.cases-header-section,
.cases-clients-section,
.case-detail-header,
.news-header-section,
.nd-detail-header,
.about-hero-section,
.legal-page,
.contact-info-panel,
.contact-form-panel-dark,
.contact-form-title {
  padding-top: 40px;
}

@media (max-width: 480px) {
  .products-list-section,
  .product-detail-section,
  .cases-header-section,
  .cases-clients-section,
  .case-detail-header,
  .news-header-section,
  .nd-detail-header,
  .about-hero-section,
  .legal-page,
  .contact-info-panel,
  .contact-form-panel-dark,
  .products-search-list-section {
    padding-top: 20px;
  }

  .contact-form-title {
    padding-top: 20px;
  }

  .about-hero-title {
    margin-top: 0;
  }
}




/* ========================================
   Solutions 移动端
   ======================================== */
@media (max-width: 1024px) {
  .solutions-venue-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-projects-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .solutions-hero-card { height: clamp(360px, 65vh, 480px); }
  .solutions-hero-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .solutions-hero-tile-1 { grid-column: 1; grid-row: 1; }
  .solutions-hero-tile-2 { grid-column: 2; grid-row: 1; }
  .solutions-hero-tile-3, .solutions-hero-tile-4, .solutions-hero-tile-5 { display: none; }
  .solutions-hero-title { font-size: 26px; }
  .solutions-hero-desc { font-size: 14px; }
  .solutions-intro-card { padding: 32px 22px; }
  .solutions-intro-title { font-size: 19px; }
  .solutions-venue-section { padding: 40px 20px; }
  .solutions-intro-section { padding: 40px 20px 20px; }
  .solutions-projects-section { padding: 40px 20px; }
  .solutions-faq-section { padding: 40px 20px; }
  .solutions-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .solutions-stat-number { font-size: 36px; }
  .solutions-projects-row { gap: 14px; }
  .solutions-trusted-section { padding: 50px 20px 30px; }
}

@media (max-width: 480px) {
  .solutions-hero-title { font-size: 22px; }
  .solutions-section-title { font-size: 22px; }
  .solutions-trusted-title { font-size: 22px; }
  .solutions-faq-title { font-size: 22px; }
  .solutions-faq-item > summary { font-size: 15px; }
  .solutions-venue-grid { grid-template-columns: 1fr; }
  .solutions-projects-row { grid-template-columns: 1fr; }
}


@media (max-width: 991px) {
  .solution-detail-hero-title { font-size: 36px; }
  .solution-detail-intro-list { grid-template-columns: 1fr; }
  .solution-detail-range-grid { grid-template-columns: repeat(3, 1fr); }
  .solution-detail-trusted-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-detail-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .solution-detail-hero { min-height: 60vh; }
  .solution-detail-hero-title { font-size: 28px; }
  .solution-detail-hero-desc { font-size: 15px; }
  .solution-detail-intro-card { padding: 32px 24px; }
  .solution-detail-intro-title { font-size: 22px; }
  .solution-detail-section-title { font-size: 24px; }
  .solution-detail-range-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-detail-stats-row { gap: 30px; }
  .solution-detail-stat-number { font-size: 34px; }
  .solution-detail-trusted-grid { grid-template-columns: 1fr; }
  .solution-detail-cases-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Homepage components — merged 2026-08-30
   Source: longg-home-v20260830.css, home-projects.css,
           home-refinements.css, home-quote.css
   (homepage-current-solution.css 为旧版残留，未合并)
   ============================================================ */


/* ===== 来源：homepage-belveo-clean.css | 首页基础布局：解决方案、为什么选择LONGG、案例、品牌LOGO、1360px布局。含历次旧页脚规则；当前页脚使用longg-footer，不使用旧footer-global/footer-legacy。 ===== */
/* LONGG homepage: quiet editorial modules inspired by Belveo's clarity */
:root {
  --home-section-heading-size: 40px;
  --home-section-heading-weight: 500;
  --home-section-heading-spacing: .018em;
  --home-section-heading-line-height: 1.16;
}

.skip-to-content {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 4px;
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-160%);
}

.skip-to-content:focus-visible {
  transform: translateY(0);
}

.home-solution-panel,
.home-manufacturer-proof {
  max-width: 1440px;
  margin: 0 auto;
}

.home-solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  padding: 64px 40px 0;
}

.home-solution-photo {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.home-solution-photo img,
.home-factory-photo img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.home-solution-photo img {
  object-position: center;
}

.home-solution-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 58px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #f0ede7;
}

.home-kicker {
  margin: 0 0 14px;
  color: #555752;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-solution-content h2,
.home-manufacturer-intro h2,
.home-why-proof-header h2,
.home-projects-heading-grid .home-commercial-spaces-title,
.home-project-clients-intro h2,
.home-planning-cta-title {
  margin: 0;
  color: #111;
  font-size: var(--home-section-heading-size);
  font-weight: var(--home-section-heading-weight);
  letter-spacing: var(--home-section-heading-spacing);
  line-height: var(--home-section-heading-line-height);
  text-transform: uppercase;
  text-wrap: balance;
}

.home-solution-content > p:not(.home-kicker) {
  margin: 24px 0 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.68;
  text-wrap: pretty;
}

.home-solution-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.home-solution-list li {
  color: #232323;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.home-solution-list a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

.home-solution-list a:hover,
.home-solution-list a:focus-visible {
  text-decoration: underline;
}

.home-solution-list a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.home-solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-manufacturer-proof {
  padding: 96px 40px 72px;
}

.home-manufacturer-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: start;
  margin-bottom: 40px;
}

.home-manufacturer-answer {
  max-width: 680px;
}

.home-manufacturer-answer p {
  margin: 0;
  color: #303030;
  font-size: 15px;
  line-height: 1.72;
  text-wrap: pretty;
}

.home-inline-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.home-inline-link span {
  transition: transform .2s ease;
}

.home-inline-link:hover span,
.home-inline-link:focus-visible span {
  transform: translateX(4px);
}

.home-factory-photo {
  height: clamp(390px, 40vw, 540px);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.home-factory-photo img {
  object-position: center 55%;
}

.home-company-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 36px 0 0;
}

.home-company-facts > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  text-align: center;
}

.home-company-facts dd {
  margin: 0;
  color: #111;
  font-size: clamp(38px, 3.8vw, 50px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.home-company-facts sup {
  margin-left: 2px;
  font-size: .5em;
  vertical-align: top;
}

.home-company-facts dt {
  order: 2;
  margin-top: 11px;
  color: #565656;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-manufacturer-proof + .home-commercial-spaces-section .home-commercial-spaces-header {
  padding-top: 0;
}

/* A text-led proof section between two image-rich homepage areas */
.home-why-proof {
  position: relative;
  left: 50%;
  width: min(1360px, calc(100vw - 80px));
  max-width: none;
  margin: 72px 0 24px;
  padding: 64px 58px 42px;
  transform: translateX(-50%);
  border-radius: var(--radius-md);
  background: #e4e8e4;
}

.home-why-proof-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* The media begins on the same grid line as category card three above. */
  gap: 20px;
  align-items: center;
}

.home-why-proof-header h2 {
  max-width: 610px;
}

.home-why-proof-answer {
  max-width: 650px;
  margin-top: 26px;
}

.home-why-proof-answer p {
  margin: 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.68;
  text-wrap: pretty;
}

.home-why-proof-media {
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #dddcd7;
}

.home-why-proof-media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.home-why-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  margin-top: 44px;
}

.home-why-proof-grid article {
  min-width: 0;
}

.home-why-proof-grid strong {
  display: block;
  color: #111;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.home-why-proof-grid sup {
  margin-left: 2px;
  font-size: .5em;
  vertical-align: top;
}

.home-why-proof-grid h3 {
  margin: 18px 0 10px;
  color: #1d1d1d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.35;
  text-transform: none;
}

.home-why-proof-grid p {
  max-width: 230px;
  margin: 0;
  color: #515151;
  font-size: 13px;
  line-height: 1.55;
}

.home-why-proof + .home-commercial-spaces-section .home-commercial-spaces-header {
  padding-top: 0;
}

/* Project heading: asymmetric editorial layout above the original image mosaic. */
.home-projects-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 16px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 26px;
  text-align: center;
}

.home-commercial-spaces-section {
  padding-top: 0;
  padding-bottom: 0;
}

.home-projects-heading-grid .home-kicker {
  margin-bottom: 13px;
}

.home-projects-heading-grid .home-commercial-spaces-title {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.home-projects-heading-grid .home-commercial-spaces-desc {
  max-width: 820px;
  margin: 0 auto;
  color: #454545;
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
  text-wrap: pretty;
}

.home-projects-heading-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 2px;
  text-align: center;
}

.home-projects-client-proof {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: #f0efeb;
}

.home-projects-client-proof > p {
  margin: 0 0 16px;
  color: #4d4d4d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-projects-client-proof .partner-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: center;
}

.home-projects-client-proof .partner-brand-item {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  opacity: .7;
}

.home-projects-client-proof .partner-brand-item img,
.home-projects-client-proof .partner-brand-item img:hover {
  width: 100%;
  max-width: 112px;
  max-height: 36px;
  filter: grayscale(100%);
  object-fit: contain;
}

.home-projects-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-projects-all-link span {
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}

.home-projects-all-link:hover span {
  transform: translateX(4px);
}

.home-projects-all-link:focus-visible {
  outline: 2px solid #111;
  outline-offset: 5px;
}

.home-commercial-spaces-section + .home-projects-showcase-section {
  padding-top: 0;
}

.home-projects-showcase-section {
  padding-bottom: 0;
}

/* Restore the original client-logo treatment: a quiet, independent row
   directly below the project gallery, without cards or a section heading. */
.home-project-partner-brands {
  padding: 32px 0 40px;
  background: #fff;
}

.home-project-partner-brands .partner-brands-inner {
  padding-right: 20px;
  padding-left: 20px;
}

.home-project-partner-brands .partner-brands-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 42px;
}

.home-project-partner-brands .partner-brand-item {
  height: 60px;
  opacity: .62;
}

.home-project-partner-brands .partner-brand-item img,
.home-project-partner-brands .partner-brand-item img:hover {
  width: auto;
  max-width: 150px;
  max-height: 50px;
  filter: grayscale(100%);
  object-fit: contain;
}

/* Keep the established LONGG centered planning CTA. */
.home-planning-cta-section {
  padding: 32px 0 72px;
  background: #fff;
}

.home-planning-cta-inner {
  display: block;
  padding: 0;
  background: #efefef;
  border-radius: 8px;
  text-align: center;
}

.home-planning-cta-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 80px 32px;
}

.home-planning-cta-title {
  max-width: none;
  margin-bottom: 8px;
  color: #111;
  text-align: center;
}

.home-planning-cta-desc {
  max-width: none;
  margin: 0;
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.home-planning-cta-content .home-more-toggle-wrapper {
  margin: 14px 0 6px;
  text-align: center;
}

.home-planning-cta-inner > .home-planning-cta-btn {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin: 0 0 60px;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.home-planning-cta-inner > .home-planning-cta-btn:hover {
  background: #111;
  color: #fff;
}

.home-planning-cta-inner > .home-planning-cta-btn:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

/* Keep the main homepage modules on one 1360px desktop grid. */
@media (min-width: 981px) {
  .hero-inner,
  .categories-gallery,
  .home-solution-panel,
  .home-why-proof,
  .home-commercial-spaces-section > .container,
  .home-projects-showcase-section > .container,
  .partner-brands-inner,
  .home-planning-cta-section > .container {
    position: relative;
    left: 50%;
    width: min(1360px, calc(100vw - 80px));
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .home-solution-panel {
    /* End the photo at the right edge of category card two above. */
    grid-template-columns: calc(50% - 10px) calc(50% + 10px);
    gap: 0;
    padding-top: 36px;
    padding-right: 0;
    padding-left: 0;
  }

  .categories-gallery {
    padding-top: 56px;
    padding-bottom: 36px;
  }

  /* Restore the original varied bento composition used before the 4:3 card test. */
  .home-projects-showcase-section .bento-group {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    aspect-ratio: 4 / 3;
  }

  .home-solution-photo,
  .home-solution-content {
    border-radius: 0;
  }

  .home-solution-photo {
    position: relative;
    height: auto;
    min-height: 0;
    max-height: 597px;
    aspect-ratio: auto;
    
  }

  .home-solution-content {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

}

.home-solid-link:focus-visible,
.home-inline-link:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --home-section-heading-size: 32px;
  }

  .home-solution-panel {
    grid-template-columns: 1fr;
  }

  .home-solution-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .home-solution-content {
    padding: 44px 38px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .home-manufacturer-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-why-proof {
    position: static;
    left: auto;
    width: auto;
    margin-right: 40px;
    margin-left: 40px;
    padding: 52px 40px;
    transform: none;
  }

  .home-why-proof-header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-why-proof-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-why-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 30px;
    margin-top: 46px;
  }

  .home-projects-heading-grid {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
  }

  .home-projects-client-proof {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
  }

  .home-projects-client-proof > p {
    margin: 0;
  }

  .home-projects-client-proof .partner-brands-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  :root {
    --home-section-heading-size: 27px;
  }

  .home-solution-panel,
  .home-manufacturer-proof {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-solution-panel {
    padding-top: 40px;
  }

  .home-solution-photo {
    aspect-ratio: 4 / 3;
  }

  .home-solution-content {
    padding: 30px 22px 34px;
  }

  .home-kicker {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .home-solution-content > p:not(.home-kicker),
  .home-manufacturer-answer p {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-solution-content > p:not(.home-kicker) {
    margin-top: 19px;
  }

  .home-solution-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .home-solid-link {
    margin-top: 27px;
  }

  .home-manufacturer-proof {
    padding-top: 64px;
    padding-bottom: 52px;
  }

  .home-manufacturer-intro {
    margin-bottom: 28px;
  }

  .home-factory-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-company-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
    padding-top: 30px;
  }

  .home-company-facts dd {
    font-size: 36px;
  }

  .home-why-proof {
    width: auto;
    margin: 40px 20px 20px;
    padding: 34px 22px 38px;
  }

  .home-why-proof-answer p {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-why-proof-media {
    aspect-ratio: 4 / 3;
  }

  .home-why-proof-grid {
    gap: 32px 18px;
    margin-top: 38px;
  }

  .home-why-proof-grid strong {
    font-size: 36px;
  }

  .home-why-proof-grid h3 {
    margin-top: 13px;
    font-size: 11px;
  }

  .home-why-proof-grid p {
    font-size: 12px;
    line-height: 1.5;
  }

  .home-projects-heading-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .home-projects-heading-grid .home-commercial-spaces-desc {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-projects-heading-copy {
    gap: 17px;
  }

  .home-projects-client-proof {
    grid-column: auto;
    display: flex;
    margin-top: 4px;
    padding: 22px 18px;
  }

  .home-projects-client-proof > p {
    margin-bottom: 14px;
    text-align: center;
  }

  .home-projects-client-proof .partner-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 20px;
  }

  .home-projects-client-proof .partner-brand-item {
    height: 34px;
    justify-content: center;
  }

  .home-planning-cta-section {
    padding: 24px 20px 48px;
  }

  .home-planning-cta-inner {
    padding: 0;
  }

  .home-planning-cta-content {
    padding: 38px 22px 26px;
  }

  .home-planning-cta-content,
  .home-planning-cta-desc {
    max-width: none;
  }

  .home-planning-cta-inner > .home-planning-cta-btn {
    margin-bottom: 38px;
  }
}

@media (max-width: 980px) {
  .home-project-partner-brands .partner-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 28px;
  }
}

@media (max-width: 600px) {
  .home-project-partner-brands {
    padding: 24px 20px;
  }

  .home-project-partner-brands .partner-brands-inner {
    padding: 0;
  }

  .home-project-partner-brands .partner-brands-grid {
    gap: 16px 18px;
  }

  .home-project-partner-brands .partner-brand-item {
    height: 44px;
  }

  .home-project-partner-brands .partner-brand-item img,
  .home-project-partner-brands .partner-brand-item img:hover {
    max-width: 105px;
    max-height: 38px;
  }
}

/* LONGG footer: procurement clarity from GCON/3ERP, compact hierarchy from IKEA. */
.footer-global {
  padding: 32px 40px 24px;
  background: #e4e6e1;
  color: #181916;
}

.footer-global-inner {
  width: min(1360px, 100%);
  margin: 0 auto;
}

.footer-project {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: end;
  gap: 72px;
  padding: 58px 64px 56px;
  border-radius: var(--radius-md);
  background: #f4f3ef;
}

.footer-project-heading p {
  margin: 0 0 18px;
  color: #555a53;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}

.footer-project h2 {
  max-width: 650px;
  margin: 0;
  color: #11120f;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
  text-transform: none;
}

.footer-project-action {
  max-width: 540px;
  justify-self: end;
}

.footer-project-action p {
  margin: 0 0 26px;
  color: #50534e;
  font-size: 16px;
  line-height: 1.65;
}

.footer-project-action a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 34px;
  padding: 0 24px;
  border-radius: 4px;
  background: #1c211d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-decoration: none;
}

.footer-project-action a span {
  color: #ef7d00;
  font-size: 19px;
  line-height: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, .72fr));
  gap: 64px;
  padding: 64px 8px 54px;
}

.footer-brand-column {
  max-width: 390px;
}

.footer-logo {
  display: block;
  width: 220px;
  margin-bottom: 26px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.footer-brand-column > p {
  margin: 0 0 24px;
  color: #4f544e;
  font-size: 14px;
  line-height: 1.7;
}

.footer-brand-column address {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #262a26;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.footer-brand-column address a,
.footer-link-column a,
.footer-global-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-link-column h2 {
  margin: 0 0 12px;
  color: #191b18;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.3;
}

.footer-link-column a {
  color: #4b504a;
  font-size: 14px;
  line-height: 1.45;
}

.footer-brand-column address a:hover,
.footer-link-column a:hover,
.footer-global-bottom a:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-project-action a:hover {
  background: #303730;
}

.footer-project-action a:focus-visible,
.footer-logo:focus-visible,
.footer-link-column a:focus-visible,
.footer-brand-column address a:focus-visible,
.footer-global-bottom a:focus-visible,
.footer-global .footer-up-btn:focus-visible {
  outline: 2px solid #1c211d;
  outline-offset: 4px;
}

.footer-global-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  min-height: 58px;
  padding: 12px 8px 0;
  color: #626760;
  font-size: 12px;
}

.footer-global-bottom p {
  margin: 0;
}

.footer-global-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-global-bottom nav:first-of-type {
  justify-self: start;
}

.footer-global-bottom nav:last-of-type {
  justify-self: end;
}

.footer-global .footer-up-btn {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #1d211d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.footer-global .footer-up-btn:hover {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .footer-project {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px;
  }

  .footer-project-action {
    max-width: 650px;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
    max-width: 600px;
  }

  .footer-global-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-global-bottom nav {
    grid-column: 1 / -1;
  }

  .footer-global-bottom nav:last-of-type {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .footer-global {
    padding: 20px 20px 22px;
  }

  .footer-project {
    gap: 24px;
    padding: 36px 26px 34px;
  }

  .footer-project-heading p {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .footer-project h2 {
    font-size: 32px;
  }

  .footer-project h2 br {
    display: none;
  }

  .footer-project-action p {
    font-size: 14px;
  }

  .footer-project-action a {
    width: 100%;
    justify-content: space-between;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
    padding: 48px 4px 38px;
  }

  .footer-brand-column,
  .footer-link-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-global-bottom {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 0 4px;
  }

  .footer-global-bottom nav {
    gap: 10px 18px;
  }
}

/* Compact LONGG footer — the homepage already contains the primary project CTA. */
.footer-global {
  padding-top: 0;
  background: #252824;
  color: #f4f3ee;
}

.footer-main-compact {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(560px, 1.55fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 18px 96px;
  min-height: 0;
  padding: 46px 8px 38px;
}

.footer-main-compact .footer-brand-column {
  grid-row: 1 / 3;
  max-width: 310px;
}

.footer-main-compact .footer-logo {
  width: 220px;
  margin-bottom: 18px;
  padding: 12px 14px 10px;
  border-radius: 5px;
  background: #f4f3ef;
}

.footer-main-compact .footer-logo img {
  mix-blend-mode: normal;
}

.footer-main-compact .footer-brand-column > p {
  max-width: 300px;
  margin: 0;
  color: #bfc2bb;
  font-size: 13px;
  line-height: 1.6;
}

.footer-compact-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px 42px;
  align-self: end;
  padding-bottom: 12px;
}

.footer-compact-nav a {
  color: #f3f2ed;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .035em;
  text-decoration: none;
}

.footer-compact-contact {
  display: flex;
  grid-column: 2;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
  align-self: start;
  justify-self: stretch;
  padding-top: 10px;
  color: #aeb2aa;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.footer-compact-contact a {
  color: #d7d8d2;
  text-decoration: none;
}

.footer-compact-nav a:hover,
.footer-compact-contact a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-global-bottom {
  min-height: 52px;
  padding: 16px 8px 0;
  color: #92968f;
}

.footer-global-bottom a {
  color: #b6b9b2;
}

.footer-global .footer-up-btn {
  color: #f2f1ec;
}

.footer-compact-nav a:focus-visible,
.footer-compact-contact a:focus-visible,
.footer-global-bottom a:focus-visible,
.footer-global .footer-up-btn:focus-visible {
  outline-color: #f4f3ee;
}

@media (max-width: 900px) {
  .footer-main-compact {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
  }

  .footer-main-compact .footer-brand-column {
    grid-row: 1 / 3;
  }

  .footer-compact-nav {
    grid-column: 2;
    grid-row: auto;
    justify-content: start;
    align-self: end;
  }

  .footer-compact-contact {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .footer-main-compact {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 42px 4px 34px;
  }

  .footer-main-compact .footer-brand-column,
  .footer-compact-nav {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-compact-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 24px;
    padding-bottom: 0;
  }

  .footer-compact-contact {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    justify-self: start;
  }
}

/* Centered brand composition for the dark footer. */
.footer-main-compact {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 22px;
  justify-items: center;
  min-height: 0;
  padding: 50px 8px 38px;
  text-align: center;
}

.footer-main-compact .footer-brand-column {
  grid-row: auto;
  max-width: 520px;
}

.footer-main-compact .footer-logo {
  width: 230px;
  margin: 0 auto 16px;
}

.footer-main-compact .footer-brand-column > p {
  max-width: 520px;
  margin: 0 auto;
}

.footer-main-compact .footer-compact-nav {
  justify-content: center;
  align-self: auto;
  padding: 6px 0 0;
}

.footer-main-compact .footer-compact-contact {
  grid-column: auto;
  justify-content: center;
  justify-self: center;
  align-self: auto;
  padding-top: 0;
}

@media (max-width: 900px) {
  .footer-main-compact {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
  }

  .footer-main-compact .footer-brand-column,
  .footer-main-compact .footer-compact-nav,
  .footer-main-compact .footer-compact-contact {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .footer-main-compact {
    gap: 26px;
    padding: 42px 4px 34px;
    text-align: center;
  }

  .footer-main-compact .footer-compact-nav {
    width: min(340px, 100%);
    justify-content: stretch;
    text-align: left;
  }

  .footer-main-compact .footer-compact-contact {
    align-items: center;
  }
}

/* Refined original LONGG footer: same content, tighter spacing and proportions. */
.footer-legacy {
  padding: 0;
  background: #f5f5f3;
}

.footer-legacy .footer-pc {
  width: min(1360px, 100%);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-bel-path,
.footer-bel-main {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.footer-bel-path {
  margin-bottom: 34px;
  color: #777a73;
  font-size: 10.5px;
}

.footer-bel-path ol {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bel-path a {
  color: #4f524c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
}

.footer-bel-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.7fr) repeat(3, minmax(150px, 1fr));
  gap: 54px;
  align-items: start;
}

.footer-bel-brand {
  max-width: 350px;
}

.footer-bel-logo {
  display: block;
  width: 235px;
}

.footer-bel-logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-bel-brand p {
  margin: 22px 0 16px;
  color: #454842;
  font-size: 13px;
  line-height: 1.65;
}

.footer-bel-contact {
  color: #171815;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.footer-bel-contact span {
  margin-left: 5px;
}

.footer-bel-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-bel-heading {
  margin: 0 0 6px;
  color: #171815;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bel-column a {
  color: #4d504a;
  font-size: 12.5px;
  line-height: 1.35;
  text-decoration: none;
}

.footer-bel-column a:hover,
.footer-bel-contact:hover,
.footer-bel-path a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-ikea-visual,
.footer-breadcrumb-demo,
.footer-ikea-primary {
  display: none;
}

.footer-legacy .footer-bottom {
  position: relative;
  max-width: none;
  gap: 12px;
  padding: 34px 0 26px;
}

.footer-legacy .footer-social {
  gap: 22px;
  margin: 0 0 4px;
}

.footer-legacy .footer-social .social-icon {
  width: 28px;
  height: 28px;
  color: #242522;
  opacity: .88;
}

.footer-legacy .footer-social .social-icon svg {
  width: 100%;
  max-width: 28px;
  height: 20px;
}

.footer-legacy .footer-social .social-icon:hover {
  opacity: .55;
}

.footer-legacy .footer-legal-links {
  margin: 2px 0;
  color: #3f423d;
  font-size: 12px;
  line-height: 1.6;
}

.footer-legacy .footer-legal-links a {
  color: inherit;
}

.footer-legacy .footer-legal-links .separator {
  margin: 0 5px;
  color: #a2a49f;
}

.footer-legacy .footer-copyright-text {
  margin: 2px 0 0;
  color: #777b75;
  font-size: 11px;
  letter-spacing: .045em;
}

.footer-legacy .footer-up-btn {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: 58px;
  height: 34px;
  margin: 0;
  padding: 0;
  border-radius: 3px;
  background: #343632;
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
}

.footer-legacy .footer-up-btn:hover {
  background: #1e201d;
}

.footer-legacy .footer-up-btn:focus-visible,
.footer-legacy .footer-social a:focus-visible,
.footer-legacy .footer-legal-links a:focus-visible {
  outline: 2px solid #222;
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .footer-legacy .footer-pc {
    padding: 0 20px;
  }

  .footer-legacy .footer-bottom {
    gap: 12px;
    padding: 30px 0 24px;
  }

  .footer-legacy .footer-social {
    gap: 12px;
  }

  .footer-legacy .footer-legal-links {
    max-width: 330px;
  }

  .footer-legacy .footer-legal-links .separator {
    margin: 0 2px;
  }

  .footer-legacy .footer-up-btn {
    position: static;
    width: 58px;
    height: 34px;
    margin-top: 4px;
  }
}

/* Original footer composition, with useful information occupying the side space. */
.footer-legacy .footer-pc {
  width: min(1360px, 100%);
  max-width: 1360px;
  padding: 0 40px;
}

.footer-breadcrumb-demo {
  width: min(1040px, 100%);
  margin: 5px auto 0;
  color: #777a73;
  font-size: 10.5px;
}

.footer-breadcrumb-demo ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-breadcrumb-demo a {
  color: #575a54;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
}

.footer-breadcrumb-demo a:hover {
  color: #171815;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-breadcrumb-demo-separator {
  color: #9a9d96;
  font-size: 14px;
  line-height: 1;
}

.footer-legacy .footer-bottom {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(500px, 800px) minmax(180px, 1fr);
  align-items: center;
  gap: 36px;
  max-width: none;
  padding: 40px 0 0;
}

.footer-center {
  display: flex;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.footer-legacy .footer-social {
  gap: 30px;
  margin-bottom: 10px;
}

.footer-legacy .footer-social .social-icon {
  width: auto;
  height: auto;
  color: #222;
  opacity: 1;
}

.footer-legacy .footer-social .social-icon svg {
  width: auto;
  max-width: none;
  height: 24px;
}

.footer-legacy .footer-legal-links {
  margin: 4px 0 8px;
  color: #000;
  font-size: 13px;
}

.footer-legacy .footer-legal-links .separator {
  margin: 0 2px;
  color: #000;
}

.footer-legacy .footer-copyright-text {
  margin: 0;
  color: #000;
  font-size: 13px;
  letter-spacing: 0;
}

.footer-legacy .footer-up-btn {
  position: static;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 10px;
  padding: 14px 30px;
  border-radius: 0;
  background: #333;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-side {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #666a64;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.footer-side > span {
  margin-bottom: 5px;
  color: #242622;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

.footer-side a {
  color: inherit;
  text-decoration: none;
}

.footer-side a:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-side-left {
  align-items: flex-start;
  text-align: left;
}

.footer-side-brand {
  max-width: 245px;
  gap: 13px;
}

.footer-side-logo {
  display: block;
  width: 160px;
}

.footer-side-logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.footer-side-brand p {
  max-width: 235px;
  margin: 0;
  color: #666a64;
  font-size: 12px;
  line-height: 1.55;
}

.footer-side-right {
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 900px) {
  .footer-legacy .footer-bottom {
    grid-template-columns: 1fr;
    padding: 34px 0 0;
  }

  .footer-center {
    justify-self: center;
  }

  .footer-side {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer-legacy .footer-pc {
    padding: 0 20px;
  }

  .footer-legacy .footer-bottom {
    gap: 20px;
    padding: 26px 0;
  }

  .footer-center {
    gap: 14px;
  }

  .footer-legacy .footer-social {
    gap: 10px;
    margin-bottom: 14px;
  }

  .footer-legacy .footer-social .social-icon {
    width: 34px;
    height: 34px;
  }

  .footer-legacy .footer-social .social-icon svg {
    height: 18px;
  }

  .footer-legacy .footer-up-btn {
    width: 80%;
    padding: 12px 0;
    margin: 18px auto -20px;
    font-size: 13px;
  }
}

/* IKEA-inspired LONGG footer: one branded visual, then two calm navigation levels. */
.footer-legacy {
  padding: 34px 0 18px;
  background: #dedfd9;
  color: #171815;
}

.footer-legacy .footer-pc {
  width: min(1360px, 100%);
  max-width: 1360px;
  padding: 0 40px;
}

.footer-ikea-visual {
  position: relative;
  display: block;
  width: min(1040px, 100%);
  aspect-ratio: 4.6 / 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.footer-ikea-logo-plate {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background: transparent;
}

.footer-ikea-logo-white {
  width: 55%;
  height: auto;
  overflow: visible;
  opacity: 1;
}

.footer-ikea-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  margin: 16px auto 0;
  color: #20211e;
  font-size: 15px;
  font-weight: 500;
}

.footer-ikea-primary a {
  color: inherit;
  text-decoration: none;
}

.footer-ikea-primary a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-legacy .footer-bottom {
  display: flex;
  max-width: 1180px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 42px auto 0;
  padding: 0;
}

.footer-legacy .footer-side {
  display: none;
}

.footer-legacy .footer-center {
  display: grid;
  width: 100%;
  max-width: 900px;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 17px 30px;
}

.footer-legacy .footer-social {
  grid-column: 1 / -1;
  justify-self: center;
  gap: 19px;
  margin: 0;
}

.footer-legacy .footer-social .social-icon {
  width: 27px;
  height: 27px;
  color: #3c3e3a;
}

.footer-legacy .footer-social .social-icon svg {
  width: auto;
  max-width: 28px;
  height: 18px;
}

.footer-legacy .footer-social .social-icon:first-child svg {
  width: 30px;
  max-width: 30px;
  height: auto;
}

.footer-legacy .footer-social .social-icon:nth-child(2) svg {
  width: 16px;
  height: 16px;
}

.footer-legacy .footer-social .social-icon svg path {
  fill: currentColor !important;
}

.footer-legacy .footer-legal-links {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  margin: 0;
  color: #52554f;
  font-size: 11.5px;
}

.footer-legacy .footer-legal-links a {
  color: inherit;
}

.footer-legacy .footer-legal-links .separator {
  margin: 0 6px;
  color: #9a9d96;
}

.footer-legacy .footer-copyright-text {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  margin: 0;
  color: #5b5e58;
  font-size: 11.5px;
  letter-spacing: .02em;
}

.footer-ikea-visual:focus-visible,
.footer-breadcrumb-demo a:focus-visible,
.footer-ikea-primary a:focus-visible,
.footer-bel-path a:focus-visible,
.footer-bel-logo:focus-visible,
.footer-bel-contact:focus-visible,
.footer-bel-column a:focus-visible,
.footer-legacy .footer-social a:focus-visible,
.footer-legacy .footer-legal-links a:focus-visible {
  outline: 2px solid #171815;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .footer-legacy {
    padding: 42px 0 22px;
  }

  .footer-legacy .footer-pc {
    padding: 0 20px;
  }

  .footer-bel-path {
    margin-bottom: 26px;
  }

  .footer-bel-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .footer-bel-brand {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .footer-bel-logo {
    width: 205px;
  }

  .footer-bel-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-breadcrumb-demo {
    margin-top: 5px;
    line-height: 1.5;
  }

  .footer-ikea-visual {
    aspect-ratio: 2 / 1;
  }

  .footer-ikea-logo-plate {
    width: 100%;
    height: 100%;
  }

  .footer-ikea-logo-white {
    width: 72%;
    opacity: 1;
  }

  .footer-ikea-primary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 24px;
    margin-top: 34px;
    text-align: left;
  }

  .footer-ikea-primary > span {
    display: none;
  }

  .footer-legacy .footer-bottom {
    gap: 13px;
    margin-top: 30px;
    padding: 0;
  }

  .footer-legacy .footer-center {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .footer-legacy .footer-social {
    gap: 10px;
  }

  .footer-legacy .footer-legal-links {
    max-width: 350px;
    justify-self: auto;
    line-height: 1.9;
  }
}

/* Retire the previous centered brand-poster footer after the Belveo-style rebuild. */
.footer-legacy .footer-ikea-visual,
.footer-legacy .footer-breadcrumb-demo,
.footer-legacy .footer-ikea-primary {
  display: none !important;
}

/* Final footer refinement: one aligned B2B navigation system, no homepage breadcrumb. */
.footer-legacy {
  padding: 42px 0 18px;
  background: #dedfd9;
}

.footer-bel-main {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(300px, 1.55fr) repeat(3, minmax(150px, 1fr));
  gap: 48px;
}

.footer-bel-brand {
  max-width: 330px;
}

.footer-bel-logo {
  width: 210px;
}

.footer-bel-brand p {
  margin: 18px 0 14px;
  max-width: 320px;
}

.footer-bel-column {
  gap: 10px;
}

.footer-bel-heading {
  margin-bottom: 8px;
}

.footer-legacy .footer-bottom {
  margin-top: 26px;
  padding: 0 0 6px;
}

@media (max-width: 768px) {
  .footer-legacy {
    padding: 34px 0 20px;
  }

  .footer-bel-main {
    gap: 30px 24px;
  }

  .footer-bel-logo {
    width: 190px;
  }

  .footer-legacy .footer-bottom {
    margin-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-inline-link span,
  .home-projects-all-link span {
    transition: none;
  }
}

/* Restore the original LONGG footer presentation. */
.footer-legacy {
  padding: 0;
  background: #f8f8f8;
  color: #1a1a1a;
}

.footer-legacy .footer-pc {
  display: block;
  width: min(1360px, 100%);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-legacy .footer-bottom {
  display: flex;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.footer-legacy .footer-center {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-legacy .footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 4px;
}

.footer-legacy .footer-social .social-icon {
  display: flex;
  width: auto;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #222;
  opacity: 1;
}

.footer-legacy .footer-social .social-icon svg,
.footer-legacy .footer-social .social-icon:first-child svg,
.footer-legacy .footer-social .social-icon:nth-child(2) svg {
  width: auto;
  max-width: 30px;
  height: 22px;
}

.footer-legacy .footer-legal-links {
  margin: 0;
  color: #000;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.footer-legacy .footer-copyright-text {
  margin: 0;
  color: #000;
  font-size: 13px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.footer-legacy .footer-up-btn {
  position: static;
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0;
  padding: 14px 30px;
  border: 0;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-legacy .footer-up-btn:hover {
  background: #000;
}

@media (max-width: 640px) {
  .footer-legacy .footer-pc {
    padding: 0 20px;
  }

  .footer-legacy .footer-bottom {
    gap: 16px;
    padding-top: 28px;
  }

  .footer-legacy .footer-social {
    gap: 12px;
  }

  .footer-legacy .footer-up-btn {
    width: 80%;
    margin-bottom: -20px;
    padding: 12px 0;
    font-size: 13px;
  }
}


/* ===== 来源：home-quote.css | 询价CTA与FAQ基础样式；同时包含本地联系页表单样式。当前CTA最终外观由home-refinements.css覆盖。 ===== */
.home-quote { max-width:1440px; margin:0 auto; padding:32px 40px 64px; scroll-margin-top:120px; font-family:var(--font-body); color:var(--text-color); }
@media (min-width:981px) {
  .home-quote { position:relative; left:50%; width:min(1360px, calc(100vw - 80px)); max-width:none; margin-left:0; margin-right:0; padding-left:0; padding-right:0; transform:translateX(-50%); }
}
.home-quote-card { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); background:#f0ede7; border:1px solid #e7e4de; border-radius:var(--radius-md); overflow:hidden; }
.home-quote-intro { display:flex; flex-direction:column; min-width:0; padding:48px; }
.home-quote-intro h2,.home-quote-intro h1 { margin:0; font-family:var(--font-title); font-size:var(--home-section-heading-size); font-weight:var(--home-section-heading-weight); line-height:var(--home-section-heading-line-height); letter-spacing:var(--home-section-heading-spacing); color:#111; text-transform:uppercase; text-wrap:balance; }
.home-quote-description { max-width:450px; margin:22px 0 32px; font-size:17px; line-height:1.68; color:#50504b; text-wrap:pretty; }
.home-quote-photo { margin:auto 0 0; }
.home-quote-photo figcaption { margin-top:12px; color:var(--light-text); font-size:13px; line-height:1.5; }
.home-quote-photo img { display:block; width:100%; height:auto; aspect-ratio:1.8; object-fit:cover; object-position:50% 65%; border-radius:3px; transition:transform .35s ease; }
.home-quote-form { display:flex; flex-direction:column; gap:24px; padding:48px; margin:0; background:#fcfbf9; border-left:1px solid #e7e4de; min-width:0; }
.home-quote-field { display:block; font-size:14px; font-weight:500; color:var(--text-color); }
.home-quote-optional { margin-left:6px; color:#74776f; font-size:12px; font-weight:400; }
.home-quote-field input,.home-quote-field select,.home-quote-field textarea { display:block; width:100%; min-width:0; margin-top:10px; padding:13px 16px; border:1px solid #deddd7; border-radius:3px; background:#fff; color:var(--text-color); font:400 15px/1.5 var(--font-body); transition:border-color .18s ease; }
.home-quote-field input,.home-quote-field select { min-height:50px; }
.home-quote-field textarea { resize:vertical; min-height:108px; }
.home-quote-field input:hover,.home-quote-field select:hover,.home-quote-field textarea:hover { border-color:#aaa99f; }
.home-quote-field input::placeholder,.home-quote-field textarea::placeholder { color:#7a7d74; opacity:1; }
.home-quote-types { border:0; margin:0; padding:0; min-width:0; }
.home-quote-types legend { padding:0; margin-bottom:10px; font-size:14px; font-weight:500; }
.home-quote-types legend span { display:inline-block; margin-left:6px; font-size:12px; font-weight:400; color:#74776f; }
.home-quote-choices { display:flex; flex-wrap:wrap; gap:8px; }
.home-quote-choices label { position:relative; cursor:pointer; }
.home-quote-choices input { position:absolute; width:1px; height:1px; opacity:0; }
.home-quote-choices span { display:block; min-height:44px; padding:10px 14px; border:1px solid #deddd7; border-radius:3px; background:transparent; font-size:14px; line-height:22px; color:var(--light-text); transition:background .15s,color .15s,border-color .15s; }
.home-quote-choices input:checked + span { background:#111; border-color:#111; color:#fff; }
.home-quote-choices label:hover span { border-color:#111; }
.home-quote-field input:focus-visible,.home-quote-field select:focus-visible,.home-quote-field textarea:focus-visible,.home-quote-choices input:focus-visible + span,.home-quote-submit:focus-visible,.home-quote-faq summary:focus-visible { outline:2px solid #555; outline-offset:3px; }
.home-quote-submit { display:flex; justify-content:center; align-items:center; min-height:54px; padding:14px 24px; border:1px solid #111; border-radius:3px; background:#111; color:#fff; font:500 14px/1.6 var(--font-body); letter-spacing:.06em; text-transform:uppercase; cursor:pointer; transition:background .15s; }
.home-quote-submit:hover { background:#353c40; }
.home-quote-submit:disabled { opacity:.55; cursor:not-allowed; }
.home-quote-demo-note { margin:-12px 0 0; color:#72766d; font-size:12px; line-height:1.5; text-align:center; }
.home-quote-status { margin:0; padding:12px 14px; border-left:3px solid #555; background:#edf2eb; color:#304432; font-size:14px; line-height:1.6; }
.home-quote-faq { margin-top:24px; border-bottom:1px solid #e2e2dc; }
.home-quote-faq summary { display:flex; justify-content:space-between; align-items:center; gap:20px; padding:18px 0; color:var(--text-color); font-size:14px; cursor:pointer; list-style:none; }
.home-quote-faq summary::-webkit-details-marker { display:none; }
.home-quote-faq summary::after { content:'+'; font-size:22px; font-weight:400; line-height:1; color:var(--light-text); }
.home-quote-faq[open] summary::after { content:'−'; }
.home-quote-faq-content { max-width:960px; padding:12px 0 24px; color:#50554c; font-size:15px; line-height:1.75; }
.home-quote-faq-content h2 { margin:24px 0 12px; font-size:24px; font-weight:500; }
.home-quote-faq-content h3 { margin:20px 0 8px; font-size:17px; font-weight:500; }
.home-quote-faq-content p { margin:0 0 14px; }
@media(max-width:1100px) { .home-quote-intro,.home-quote-form { padding:32px; } }
@media(max-width:800px) { .home-quote-card { grid-template-columns:1fr; } .home-quote-form { border-left:0; border-top:1px solid #e7e4de; } .home-quote-description { max-width:560px; } }
@media(max-width:600px) { .home-quote { padding:24px 20px 48px; } .home-quote-intro { padding:30px 24px; } .home-quote-description { margin:19px 0 26px; font-size:14px; line-height:1.65; } .home-quote-form { padding:28px 24px; gap:22px; } .home-quote-photo img { aspect-ratio:4 / 3; } .home-quote-choices span { padding:10px 12px; } .home-quote-field input,.home-quote-field select,.home-quote-field textarea { font-size:16px; } }

.home-quote-photo a { display:block; overflow:hidden; border-radius:3px; }
.home-quote-photo a:focus-visible { outline:2px solid #111; outline-offset:4px; }
@media(hover:hover) and (prefers-reduced-motion:no-preference) { .home-quote-photo a:hover img { transform:scale(1.025); } }
@media(prefers-reduced-motion:reduce) { .home-quote *, .home-quote *::after { transition:none; } }

/* Inset project photo on a soft sage panel; enquiries stay on /contact/. */
.home-quote-panel { background:#e3e7dd; border-radius:var(--radius-md); }
.home-quote-panel > .home-quote-faq { margin:0 28px; border:0; }
.home-quote-panel > .home-quote-faq summary { padding:20px 0; }
.home-quote-panel .home-quote-faq-content { padding-bottom:24px; }
@media(max-width:800px) { .home-quote-panel > .home-quote-faq { margin-right:24px; margin-left:24px; } }
@media(max-width:600px) { .home-quote-panel > .home-quote-faq { margin-right:16px; margin-left:16px; } }
.home-quote-teaser .home-quote-card { grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr); min-height:520px; padding:28px; border:0; background:#e3e7dd; }
@media(min-width:981px) {
  /* Match the right edge of the second project column above (20px grid gap). */
  .home-quote-teaser .home-quote-card { grid-template-columns:calc(50% - 10px) calc(50% + 10px); }
}
.home-quote-teaser .home-quote-intro { justify-content:center; padding:40px 24px 40px 48px; }
.home-quote-teaser .home-quote-intro h2 { color:#20261f; font-size:clamp(32px,3.2vw,46px); line-height:1.15; letter-spacing:.005em; text-wrap:initial; }
.home-quote-teaser .home-quote-description { max-width:450px; margin:28px 0 34px; color:#454d42; font-size:17px; line-height:1.7; }
.home-quote-link { align-self:flex-start; min-width:230px; min-height:54px; padding:16px 26px; border-radius:var(--radius-sm); text-decoration:none; }
.home-quote-link:hover { color:#fff; }
.home-quote-link:focus-visible { outline:2px solid #20261f; outline-offset:5px; }
.home-quote-teaser .home-quote-photo { position:relative; display:flex; flex-direction:column; margin:0; min-width:0; }
.home-quote-teaser .home-quote-photo a { position:relative; flex:1; min-height:464px; border-radius:4px; }
.home-quote-teaser .home-quote-photo img { position:absolute; inset:0; height:100%; aspect-ratio:auto; object-position:center; border-radius:0; }
.home-quote-teaser .home-quote-photo figcaption { position:absolute; bottom:0; left:0; right:0; margin:0; padding:44px 28px 20px; border-radius:0 0 4px 4px; background:linear-gradient(transparent, rgb(0 0 0 / 65%)); color:#fff; pointer-events:none; }
.contact-quote .home-quote-form { scroll-margin-top:130px; }
.home-quote-faq-toggle { align-self:flex-start; display:inline-flex; align-items:center; gap:14px; margin:16px 0 0; padding:4px 0; border:0; background:transparent; font:400 13px/1.5 var(--font-body); color:#454d42; cursor:pointer; }
.home-quote-faq-toggle::after { content:'+'; font-size:18px; line-height:1; }
.home-quote-faq-toggle[aria-expanded="true"]::after { content:'−'; }
.home-quote-faq-toggle:focus-visible { outline:2px solid #555; outline-offset:4px; }
.home-quote-faq-toggle[hidden],.home-quote-faq-full > summary[hidden] { display:none; }
.home-quote-faq-full { margin:0; border:0; }
.home-quote-faq-full > summary { margin:0 28px; padding:12px 0; cursor:pointer; font-size:13px; }
.home-quote-panel .home-quote-faq-full > .home-quote-faq-content { width:100%; max-width:none; padding:0 28px 28px; }
.home-quote-faq-full .home-quote-faq-content h3 { font-size:17px; line-height:1.45; }
.home-quote-faq-close { display:inline-flex; align-items:center; gap:10px; margin-top:12px; padding:10px 0; border:0; background:transparent; font:400 13px/1.5 var(--font-body); color:#454d42; cursor:pointer; }
.home-quote-faq-close::after { content:'−'; font-size:18px; }
.home-quote-faq-close:hover { text-decoration:underline; text-underline-offset:4px; }
.home-quote-faq-close:focus-visible { outline:2px solid #555; outline-offset:4px; }
.home-quote-faq-close[hidden] { display:none; }
@media(max-width:800px) { .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding:0 24px 24px; } }
@media(max-width:600px) { .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding:0 16px 24px; } }
@media(max-width:1100px) { .home-quote-teaser .home-quote-intro { padding:32px 12px 32px 32px; } }
@media(max-width:800px) { .home-quote-teaser .home-quote-card { grid-template-columns:1fr; min-height:0; padding:24px; } .home-quote-teaser .home-quote-photo a { min-height:340px; } .home-quote-teaser .home-quote-intro { padding:36px 8px 16px; } }
@media(max-width:600px) { .home-quote-teaser .home-quote-card { padding:16px; } .home-quote-teaser .home-quote-intro { padding:30px 8px 16px; } .home-quote-teaser .home-quote-intro h2 { font-size:var(--home-section-heading-size); } .home-quote-teaser .home-quote-description { margin:22px 0 28px; font-size:15px; } .home-quote-teaser .home-quote-photo a { min-height:260px; } .home-quote-link { min-width:0; font-size:13px; } }


/* ===== 来源：home-projects.css | 案例模块结构、桌面主图加四图；最终颜色、标题及手机轮播由home-refinements.css覆盖。 ===== */
/* One shared panel for the project introduction, gallery and client marks. */
.home-projects-collection {
  margin:32px auto 0;
  padding:28px;
  background:#f3f1ec;
  border-radius:var(--radius-md);
  scroll-margin-top:120px;
}
.home-projects-collection .home-commercial-spaces-section,
.home-projects-collection .home-projects-showcase-section {
  padding:0;
  margin:0;
  background:transparent;
}
.home-projects-collection .home-commercial-spaces-section > .container,
.home-projects-collection .home-projects-showcase-section > .container,
.home-projects-collection .partner-brands-inner {
  position:static;
  left:auto;
  width:100%;
  max-width:none;
  padding:0;
  margin:0;
  transform:none;
}
.home-projects-collection .home-projects-heading-grid {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  padding:12px 0 32px;
  text-align:left;
}
.home-projects-collection .home-commercial-spaces-title {
  max-width:760px;
  margin:0;
  text-align:left;
  text-wrap:initial;
}
.home-projects-collection .home-projects-heading-copy {
  flex-shrink:0;
  align-items:flex-end;
  padding:0 0 5px;
  text-align:right;
}
.home-projects-collection .home-projects-all-link { min-height:44px; font-weight:500; }
.home-project-selection {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-template-rows:repeat(2,minmax(0,1fr));
  grid-template-areas:'lead lead interior outdoor' 'lead lead detail extra';
  gap:20px;
  aspect-ratio:2 / 1;
}
.home-project-selection-card { position:relative; min-width:0; min-height:0; overflow:hidden; border-radius:var(--radius-md); }
.home-project-selection-lead { grid-area:lead; }
.home-project-selection-interior { grid-area:interior; }
.home-project-selection-outdoor { grid-area:outdoor; }
.home-project-selection-detail { grid-area:detail; }
.home-project-selection-extra { grid-area:extra; }
.home-project-selection-card .case-item-card { position:absolute; inset:0; display:block; width:100%; height:100%; border-radius:var(--radius-md); }
.home-project-selection-card .case-item-card:focus-visible { outline:2px solid #111; outline-offset:4px; }
.home-project-selection-card .case-item-img { width:100%; height:100%; aspect-ratio:auto; }
.home-project-selection-card .case-item-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.home-project-selection-card .case-item-title { position:absolute; left:0; right:0; bottom:0; margin:0; padding:36px 18px 16px; font-size:18px; font-weight:500; line-height:1.4; color:#fff; text-transform:none; text-align:left; background:linear-gradient(transparent, rgb(0 0 0 / 70%)); }
.home-project-selection-lead .case-item-title { font-size:24px; padding:44px 24px 22px; }
.home-projects-collection .home-project-partner-brands {
  margin:0;
  padding:28px 12px 0;
  background:transparent;
}
.home-projects-collection .partner-brand-item {
  background:transparent;
  mix-blend-mode:multiply;
}
.home-projects-collection .partner-brand-item img {
  transition:filter .2s ease;
}
.home-projects-collection .partner-brand-item:hover {
  opacity:1;
}
.home-projects-collection .partner-brand-item:hover img {
  filter:grayscale(0);
}
@media(prefers-reduced-motion:reduce) {
  .home-projects-collection .partner-brand-item,
  .home-projects-collection .partner-brand-item img { transition:none; }
}
@media(min-width:981px) {
  .home-projects-collection {
    position:relative;
    left:50%;
    width:min(1360px, calc(100vw - 80px));
    max-width:none;
    margin-left:0;
    margin-right:0;
    transform:translateX(-50%);
  }
}
@media(max-width:980px) {
  .home-projects-collection { padding:24px; }
  .home-projects-collection .home-projects-heading-grid { gap:20px; }
  .home-projects-collection .home-commercial-spaces-title { max-width:520px; }
  .home-project-selection { grid-template-columns:repeat(2,minmax(0,1fr)); grid-template-rows:auto; grid-template-areas:'lead lead' 'interior outdoor' 'detail extra'; aspect-ratio:auto; }
  .home-project-selection-card { aspect-ratio:4 / 3; }
  .home-project-selection-lead { aspect-ratio:16 / 9; }
  .home-project-selection-card .case-item-title { font-size:16px; padding:30px 14px 14px; }
}
@media(max-width:700px) {
  .home-projects-collection { margin:28px 20px 0; padding:20px; }
  .home-projects-collection .home-projects-heading-grid { flex-direction:column; align-items:flex-start; gap:12px; padding:6px 0 22px; }
  .home-projects-collection .home-projects-heading-copy { align-items:flex-start; text-align:left; padding:0; }
  .home-projects-collection .home-project-partner-brands { padding:22px 0 0; }
}
@media(max-width:480px) {
  .home-project-selection { grid-template-columns:1fr; grid-template-areas:'lead' 'interior' 'outdoor' 'detail' 'extra'; gap:16px; }
}


/* ===== 来源：home-refinements.css | 最终覆盖层，必须最后加载：白色三列页脚及手机折叠、统一字体间距、案例地点、客户LOGO留白、最终CTA、手机案例轮播。 ===== */
/* Belveo-inspired hierarchy, reduced to LONGG's core product and company links. */
.longg-footer { background: #fff; color: #303030; font-family: var(--font-body); scroll-margin-top: 80px; }
.longg-footer-inner { width: min(1360px, calc(100vw - 80px)); margin: 0 auto; padding: 40px 0 20px; }
.longg-footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px; padding-bottom: 28px; }
.longg-footer-logo { display: inline-flex; align-items: center; width: 138px; min-height: 44px; }
.longg-footer-logo img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.longg-footer-tagline { margin: 18px 0 12px; color: #555; font-size: 16px; font-weight: 400; line-height: 1.6; }
.longg-footer a { color: inherit; text-decoration: none; }
.longg-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.longg-footer a:focus-visible, .longg-footer button:focus-visible { outline: 2px solid #333; outline-offset: 4px; }
.longg-footer-social { display: flex; flex-wrap: wrap; gap: 4px; margin-left: -10px; }
.longg-footer-social .social-icon { display: flex; width: 40px; height: 44px; align-items: center; justify-content: center; }
.longg-footer-social svg { width: auto; max-width: 24px; height: 18px; fill: currentColor; }
.longg-footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.longg-footer-links h2 { margin: 0 0 12px; font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 28px; letter-spacing: .02em; text-transform: uppercase; color: #111; }
.longg-footer-links > a, .longg-footer-link-list > a { display: inline-flex; align-items: center; min-height: 36px; font-size: 14px; line-height: 1.5; }
.longg-footer-link-list { display: flex; flex-direction: column; align-items: flex-start; }
.longg-footer-link-list[hidden] { display: none; }
.longg-footer-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 56px; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; text-align: left; cursor: pointer; }
.longg-footer-toggle::after { content: '+'; font-size: 20px; font-weight: 400; }
.longg-footer-toggle[aria-expanded="true"]::after { content: '−'; }
.longg-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #deded9; padding-top: 16px; font-size: 13px; line-height: 1.5; }
.longg-footer-bottom p { margin: 0; }
.longg-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.longg-footer-bottom nav a { display: inline-flex; align-items: center; min-height: 44px; }
.longg-footer-bottom button { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0; border: 0; background: transparent; color: #303030; font: inherit; cursor: pointer; }
.longg-footer-bottom button:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 980px) {
  .longg-footer-main { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .longg-footer-brand { grid-column: 1 / -1; }
  .longg-footer-bottom { flex-wrap: wrap; gap: 8px 24px; }
}
@media (max-width: 600px) {
  .longg-footer-inner { width: calc(100% - 40px); padding-top: 28px; }
  .longg-footer-main { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .longg-footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .longg-footer-tagline { margin-top: 14px; font-size: 15px; }
  .longg-footer-tagline br { display: none; }
  .longg-footer-links { border-top: 1px solid #e8e8e8; }
  .longg-footer-links h2 { width: 100%; margin: 0; font-size: 14px; }
  .longg-footer-link-list { padding-bottom: 12px; }
  .longg-footer-links > a, .longg-footer-link-list > a { min-height: 44px; }
  .longg-footer-bottom nav { order: -1; width: 100%; gap: 0 18px; }
}
/* Shared LONGG typography and components; retain each panel's composition. */
:root {
  --home-section-heading-line-height: 1.25;
  --home-section-heading-spacing: .01em;
  --home-surface-warm: #f0ede7;
  --home-surface-muted: #e6e6dc;
  --home-surface-white: #fff;
  --home-copy-size: 16px;
  --home-copy-line-height: 1.7;
}

.home-solution-content { background: var(--home-surface-warm); }
.home-why-proof,
.home-quote-teaser .home-quote-panel,
.home-quote-teaser .home-quote-card { background: var(--home-surface-muted); }
.home-projects-collection { background: var(--home-surface-white); }

/* Client marks follow the factory proof on a separate white strip. */
.home-client-proof {
  margin: 0;
  padding: 32px 0;
  background: #fff;
  scroll-margin-top: 120px;
}
.home-why-proof:has(+ .home-client-proof) { margin-bottom: 0; }
.home-client-proof + .home-quote-teaser { padding-top: 0; }
.home-client-proof .partner-brands-inner { padding: 0; }
.home-client-proof .partner-brand-item { background: transparent; mix-blend-mode: multiply; }
.home-client-proof .partner-brand-item img { transition: filter .2s ease; }
.home-client-proof .partner-brand-item:hover { opacity: 1; }
.home-client-proof .partner-brand-item:hover img { filter: grayscale(0); }
@media (max-width: 600px) {
  .home-client-proof { padding-block: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-client-proof .partner-brand-item,
  .home-client-proof .partner-brand-item img { transition: none; }
}

.home-solution-content > p:not(.home-kicker),
.home-why-proof-answer p,
.home-quote-teaser .home-quote-description,
.home-quote-teaser .home-quote-faq-content {
  font-size: var(--home-copy-size);
  line-height: var(--home-copy-line-height);
  color: #303030;
}
.home-solution-content > p:not(.home-kicker),
.home-why-proof-answer { margin-top: 24px; }
.home-quote-teaser .home-quote-description { margin: 24px 0 32px; }

.home-solid-link,
.home-quote-teaser .home-quote-link {
  box-sizing: border-box;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid #111;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .5px;
  text-align: center;
}
.home-solid-link { margin-top: 32px; }
.home-solid-link:hover,
.home-quote-teaser .home-quote-link:hover { background: #333; color: #fff; }
.home-projects-collection .home-projects-all-link {
  letter-spacing: .5px;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.gallery-card-btn { border-radius: var(--radius-sm); }
.home-project-selection-card .case-item-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  padding: 36px 18px 16px;
}
.home-quote-teaser .home-quote-photo a { border-radius: var(--radius-md); }
.home-project-selection-card .case-item-title .case-item-location {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: none;
}
.home-project-selection-card .case-item-title .case-item-name {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}
.home-quote-teaser .home-quote-photo figcaption { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* Extend only the painted backgrounds on phones, keeping the content gutters.
   An unblurred shadow does not increase layout width or create horizontal scroll. */
@media (max-width: 600px) {
  /* Outer wrappers already leave the same 20px gutter as product photos. */
  .home-solution-content,
  .home-why-proof,
  .home-projects-collection,
  .home-quote-teaser .home-quote-card,
  .home-quote-teaser .home-quote-intro,
  .home-quote-panel .home-quote-faq-full > .home-quote-faq-content {
    padding-left: 0;
    padding-right: 0;
  }
  .home-quote-faq-full > summary { margin-left: 0; margin-right: 0; }
  .home-solution-panel {
    --home-mobile-panel-color: var(--home-surface-warm);
    margin-top: 40px;
    padding-top: 24px;
    background: var(--home-mobile-panel-color);
  }
  .home-solution-photo { border-radius: var(--radius-md); }
  .home-solution-content { padding-top: 32px; padding-bottom: 40px; border-radius: 0; background: transparent; }
  .home-why-proof {
    --home-mobile-panel-color: var(--home-surface-muted);
    margin-top: 40px;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-projects-collection {
    --home-mobile-panel-color: var(--home-surface-white);
    margin-top: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .home-projects-collection .home-projects-heading-grid { padding: 0 0 24px; gap: 16px; }
  .home-quote-teaser { padding-top: 40px; }
  .home-quote-teaser .home-quote-panel { --home-mobile-panel-color: var(--home-surface-muted); }
  .home-quote-teaser .home-quote-card { padding-top: 24px; padding-bottom: 40px; }
  .home-quote-teaser .home-quote-intro { padding-top: 32px; padding-bottom: 0; }
  .home-solution-panel,
  .home-why-proof,
  .home-projects-collection,
  .home-quote-teaser .home-quote-panel {
    border-radius: 0;
    box-shadow: 0 0 0 100vmax var(--home-mobile-panel-color);
    clip-path: inset(0 -100vmax);
  }
}

.home-quote-teaser .home-quote-intro h2 {
  font-size: var(--home-section-heading-size);
  line-height: var(--home-section-heading-line-height);
  letter-spacing: var(--home-section-heading-spacing);
}
.home-why-proof-answer .home-proof-brief { display: none; }

@media (min-width: 981px) {
  .home-solution-panel { padding-top: 28px; }
  .home-solution-content { padding: 56px; }
  .home-why-proof { margin-top: 64px; margin-bottom: 0; padding: 56px 56px 40px; }
  .home-projects-collection { margin-top: 64px; padding: 0; }
  .home-projects-collection .home-projects-heading-grid { padding-top: 0; }
  .home-quote-teaser { padding-top: 64px; }
  .home-quote-teaser .home-quote-intro { padding-left: 56px; }
}

/* At intermediate widths the main container already supplies page gutters.
   Avoid applying a second set of outer gutters inside that container. */
@media (min-width: 601px) and (max-width: 980px) {
  .home-solution-panel,
  .home-why-proof,
  .home-projects-collection,
  .home-quote-teaser {
    position: static;
    left: auto;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
  .home-solution-panel,
  .home-quote-teaser { padding-left: 0; padding-right: 0; }
  .home-quote-teaser .home-quote-card { grid-template-columns: 1fr; min-height: 0; }
  .home-quote-teaser .home-quote-photo a { min-height: 340px; }
  .home-quote-teaser .home-quote-intro { padding: 36px 8px 16px; }
}

@media (max-width: 600px) {
  :root {
    --home-section-heading-size: 24px;
    --home-section-heading-spacing: .01em;
  }
  .header-top .logo-image { height: 44px; width: auto; }
  .home-why-proof-answer .home-proof-full { display: none; }
  .home-why-proof-answer .home-proof-brief { display: block; }
  .home-solution-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }
  .home-solution-list a {
    display: flex;
    min-height: 44px;
    align-items: center;
    font-size: 14px;
  }
  .home-solution-content h2 {
    font-size: 24px;
    letter-spacing: .01em;
    text-wrap: initial;
  }
  .home-solution-content .home-solid-link {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .home-solid-link,
  .home-quote-teaser .home-quote-link { padding-inline: 16px; }
}

/* Closing invitation: typography and spacing from the live LONGG homepage. */
.home-quote-teaser.home-quote-banner .home-quote-panel,
.home-quote-teaser.home-quote-banner .home-quote-card {
  --home-mobile-panel-color: #efefef;
  background: #efefef;
}
.home-quote-teaser.home-quote-banner .home-quote-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 60px 40px;
}
.home-quote-teaser.home-quote-banner .home-quote-intro {
  align-items: center;
  padding: 0;
  text-align: center;
}
.home-quote-teaser.home-quote-banner .home-quote-intro h2 {
  max-width: 620px;
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .5px;
  color: #000;
  text-wrap: initial;
}
.home-quote-teaser.home-quote-banner .home-quote-description {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 24px;
  color: #606060;
  text-wrap: initial;
}
.home-quote-banner .home-quote-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14px;
  text-align: center;
}
.home-quote-banner .home-quote-actions .home-quote-link,
.home-quote-banner .home-quote-actions .home-quote-faq-toggle { align-self: center; }
.home-quote-banner .home-quote-actions .home-quote-faq-toggle {
  margin: 0 0 38px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  line-height: 25.6px;
  color: #1a1a1a;
}
.home-quote-banner .home-quote-actions .home-quote-faq-toggle::after { content: none; }
.home-quote-banner .home-quote-actions .home-quote-link {
  min-width: 0;
  min-height: 0;
  padding: 14px 28px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: .5px;
}
.home-quote-banner .home-quote-actions .home-quote-link:hover {
  background: #111;
  color: #fff;
}
.home-quote-banner .home-quote-panel .home-quote-faq-full > .home-quote-faq-content {
  padding: 0 40px 40px;
  text-align: left;
}
@media (min-width: 601px) and (max-width: 980px) {
  .home-quote-teaser.home-quote-banner .home-quote-card { padding: 36px 28px; }
  .home-quote-teaser.home-quote-banner .home-quote-intro h2 { font-size: 32px; }
  .home-quote-banner .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding: 0 28px 32px; }
}
@media (max-width: 600px) {
  .home-quote-teaser.home-quote-banner .home-quote-card { padding: 32px 0; }
  .home-quote-teaser.home-quote-banner .home-quote-intro h2 { font-size: 24px; line-height: 1.3; margin-bottom: 16px; }
  .home-quote-banner .home-quote-actions { margin-top: 18px; }
  .home-quote-banner .home-quote-actions .home-quote-faq-toggle { margin-bottom: 28px; }
  .home-quote-banner .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding: 0 0 32px; }
}

/* The wrapper is layout-neutral on desktop and a native swipe strip on phones. */
.home-project-secondary { display: contents; }
.home-project-controls { display: none; }

@media (max-width: 600px) {
  .home-project-selection { display: block; aspect-ratio: auto; }
  .home-project-selection-lead { margin-bottom: 0; }
  .home-project-secondary {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 12px;
    min-width: 0;
    padding-bottom: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #a6ada0 transparent;
  }
  .home-project-secondary > .home-project-selection-card {
    grid-area: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }
  .home-project-secondary[data-carousel-ready] { scrollbar-width: none; }
  .home-project-secondary[data-carousel-ready]::-webkit-scrollbar { display: none; }
  .home-project-controls:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
  }
  .home-project-dots { display: flex; flex: 1; min-width: 0; align-items: center; justify-content: center; }
  .home-project-dots button {
    display: grid;
    place-items: center;
    width: 30px;
    flex: 0 1 30px;
    min-width: 20px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .home-project-dots button::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
  }
  .home-project-dots button[aria-current="true"]::before { background: #111; }
  .home-project-controls button:focus-visible { outline: 2px solid #454d42; outline-offset: 3px; }
  .home-project-secondary:focus-visible {
    outline: 2px solid #454d42;
    outline-offset: 4px;
    border-radius: var(--radius-md);
  }
  .home-project-selection-card .case-item-title {
    padding: 36px 14px 14px;
    font-size: 16px;
    line-height: 1.4;
  }
}


/* One shared panel for the project introduction, gallery and client marks. */
.home-projects-collection {
  margin:32px auto 0;
  padding:28px;
  background:#f3f1ec;
  border-radius:var(--radius-md);
  scroll-margin-top:120px;
}
.home-projects-collection .home-commercial-spaces-section,
.home-projects-collection .home-projects-showcase-section {
  padding:0;
  margin:0;
  background:transparent;
}
.home-projects-collection .home-commercial-spaces-section > .container,
.home-projects-collection .home-projects-showcase-section > .container,
.home-projects-collection .partner-brands-inner {
  position:static;
  left:auto;
  width:100%;
  max-width:none;
  padding:0;
  margin:0;
  transform:none;
}
.home-projects-collection .home-projects-heading-grid {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  padding:12px 0 32px;
  text-align:left;
}
.home-projects-collection .home-commercial-spaces-title {
  max-width:760px;
  margin:0;
  text-align:left;
  text-wrap:initial;
}
.home-projects-collection .home-projects-heading-copy {
  flex-shrink:0;
  align-items:flex-end;
  padding:0 0 5px;
  text-align:right;
}
.home-projects-collection .home-projects-all-link { min-height:44px; font-weight:500; }
.home-project-selection {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-template-rows:repeat(2,minmax(0,1fr));
  grid-template-areas:'lead lead interior outdoor' 'lead lead detail extra';
  gap:20px;
  aspect-ratio:2 / 1;
}
.home-project-selection-card { position:relative; min-width:0; min-height:0; overflow:hidden; border-radius:var(--radius-md); }
.home-project-selection-lead { grid-area:lead; }
.home-project-selection-interior { grid-area:interior; }
.home-project-selection-outdoor { grid-area:outdoor; }
.home-project-selection-detail { grid-area:detail; }
.home-project-selection-extra { grid-area:extra; }
.home-project-selection-card .case-item-card { position:absolute; inset:0; display:block; width:100%; height:100%; border-radius:var(--radius-md); }
.home-project-selection-card .case-item-card:focus-visible { outline:2px solid #111; outline-offset:4px; }
.home-project-selection-card .case-item-img { width:100%; height:100%; aspect-ratio:auto; }
.home-project-selection-card .case-item-img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.home-project-selection-card .case-item-title { position:absolute; left:0; right:0; bottom:0; margin:0; padding:36px 18px 16px; font-size:18px; font-weight:500; line-height:1.4; color:#fff; text-transform:none; text-align:left; background:linear-gradient(transparent, rgb(0 0 0 / 70%)); }
.home-project-selection-lead .case-item-title { font-size:24px; padding:44px 24px 22px; }
.home-projects-collection .home-project-partner-brands {
  margin:0;
  padding:28px 12px 0;
  background:transparent;
}
.home-projects-collection .partner-brand-item {
  background:transparent;
  mix-blend-mode:multiply;
}
.home-projects-collection .partner-brand-item img {
  transition:filter .2s ease;
}
.home-projects-collection .partner-brand-item:hover {
  opacity:1;
}
.home-projects-collection .partner-brand-item:hover img {
  filter:grayscale(0);
}
@media(prefers-reduced-motion:reduce) {
  .home-projects-collection .partner-brand-item,
  .home-projects-collection .partner-brand-item img { transition:none; }
}
@media(min-width:981px) {
  .home-projects-collection {
    position:relative;
    left:50%;
    width:min(1360px, calc(100vw - 80px));
    max-width:none;
    margin-left:0;
    margin-right:0;
    transform:translateX(-50%);
  }
}
@media(max-width:980px) {
  .home-projects-collection { padding:24px; }
  .home-projects-collection .home-projects-heading-grid { gap:20px; }
  .home-projects-collection .home-commercial-spaces-title { max-width:520px; }
  .home-project-selection { grid-template-columns:repeat(2,minmax(0,1fr)); grid-template-rows:auto; grid-template-areas:'lead lead' 'interior outdoor' 'detail extra'; aspect-ratio:auto; }
  .home-project-selection-card { aspect-ratio:4 / 3; }
  .home-project-selection-lead { aspect-ratio:16 / 9; }
  .home-project-selection-card .case-item-title { font-size:16px; padding:30px 14px 14px; }
}
@media(max-width:700px) {
  .home-projects-collection { margin:28px 20px 0; padding:20px; }
  .home-projects-collection .home-projects-heading-grid { flex-direction:column; align-items:flex-start; gap:12px; padding:6px 0 22px; }
  .home-projects-collection .home-projects-heading-copy { align-items:flex-start; text-align:left; padding:0; }
  .home-projects-collection .home-project-partner-brands { padding:22px 0 0; }
}
@media(max-width:480px) {
  .home-project-selection { grid-template-columns:1fr; grid-template-areas:'lead' 'interior' 'outdoor' 'detail' 'extra'; gap:16px; }
}

/* Belveo-inspired hierarchy, reduced to LONGG's core product and company links. */
.longg-footer { background: #fff; color: #303030; font-family: var(--font-body); scroll-margin-top: 80px; }
.longg-footer-inner { width: min(1360px, calc(100vw - 80px)); margin: 0 auto; padding: 40px 0 20px; }
.longg-footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px; padding-bottom: 28px; }
.longg-footer-logo { display: inline-flex; align-items: center; width: 138px; min-height: 44px; }
.longg-footer-logo img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.longg-footer-tagline { margin: 18px 0 12px; color: #555; font-size: 16px; font-weight: 400; line-height: 1.6; }
.longg-footer a { color: inherit; text-decoration: none; }
.longg-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.longg-footer a:focus-visible, .longg-footer button:focus-visible { outline: 2px solid #333; outline-offset: 4px; }
.longg-footer-social { display: flex; flex-wrap: wrap; gap: 4px; margin-left: -10px; }
.longg-footer-social .social-icon { display: flex; width: 40px; height: 44px; align-items: center; justify-content: center; }
.longg-footer-social svg { width: auto; max-width: 24px; height: 18px; fill: currentColor; }
.longg-footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.longg-footer-links h2 { margin: 0 0 12px; font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 28px; letter-spacing: .02em; text-transform: uppercase; color: #111; }
.longg-footer-links > a, .longg-footer-link-list > a { display: inline-flex; align-items: center; min-height: 36px; font-size: 14px; line-height: 1.5; }
.longg-footer-link-list { display: flex; flex-direction: column; align-items: flex-start; }
.longg-footer-link-list[hidden] { display: none; }
.longg-footer-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 56px; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; text-align: left; cursor: pointer; }
.longg-footer-toggle::after { content: '+'; font-size: 20px; font-weight: 400; }
.longg-footer-toggle[aria-expanded="true"]::after { content: '−'; }
.longg-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #deded9; padding-top: 16px; font-size: 13px; line-height: 1.5; }
.longg-footer-bottom p { margin: 0; }
.longg-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.longg-footer-bottom nav a { display: inline-flex; align-items: center; min-height: 44px; }
.longg-footer-bottom button { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0; border: 0; background: transparent; color: #303030; font: inherit; cursor: pointer; }
.longg-footer-bottom button:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 980px) {
  .longg-footer-main { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .longg-footer-brand { grid-column: 1 / -1; }
  .longg-footer-bottom { flex-wrap: wrap; gap: 8px 24px; }
}
@media (max-width: 600px) {
  .longg-footer-inner { width: calc(100% - 40px); padding-top: 28px; }
  .longg-footer-main { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .longg-footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .longg-footer-tagline { margin-top: 14px; font-size: 15px; }
  .longg-footer-tagline br { display: none; }
  .longg-footer-links { border-top: 1px solid #e8e8e8; }
  .longg-footer-links h2 { width: 100%; margin: 0; font-size: 14px; }
  .longg-footer-link-list { padding-bottom: 12px; }
  .longg-footer-links > a, .longg-footer-link-list > a { min-height: 44px; }
  .longg-footer-bottom nav { order: -1; width: 100%; gap: 0 18px; }
}
/* Shared LONGG typography and components; retain each panel's composition. */
:root {
  --home-section-heading-line-height: 1.25;
  --home-section-heading-spacing: .01em;
  --home-surface-warm: #f0ede7;
  --home-surface-muted: #e6e6dc;
  --home-surface-white: #fff;
  --home-copy-size: 16px;
  --home-copy-line-height: 1.7;
}

.home-solution-content { background: var(--home-surface-warm); }
.home-why-proof,
.home-quote-teaser .home-quote-panel,
.home-quote-teaser .home-quote-card { background: var(--home-surface-muted); }
.home-projects-collection { background: var(--home-surface-white); }

/* Client marks follow the factory proof on a separate white strip. */
.home-client-proof {
  margin: 0;
  padding: 32px 0;
  background: #fff;
  scroll-margin-top: 120px;
}
.home-why-proof:has(+ .home-client-proof) { margin-bottom: 0; }
.home-client-proof + .home-quote-teaser { padding-top: 0; }
.home-client-proof .partner-brands-inner { padding: 0; }
.home-client-proof .partner-brand-item { background: transparent; mix-blend-mode: multiply; }
.home-client-proof .partner-brand-item img { transition: filter .2s ease; }
.home-client-proof .partner-brand-item:hover { opacity: 1; }
.home-client-proof .partner-brand-item:hover img { filter: grayscale(0); }
@media (max-width: 600px) {
  .home-client-proof { padding-block: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-client-proof .partner-brand-item,
  .home-client-proof .partner-brand-item img { transition: none; }
}

.home-solution-content > p:not(.home-kicker),
.home-why-proof-answer p,
.home-quote-teaser .home-quote-description,
.home-quote-teaser .home-quote-faq-content {
  font-size: var(--home-copy-size);
  line-height: var(--home-copy-line-height);
  color: #303030;
}
.home-solution-content > p:not(.home-kicker),
.home-why-proof-answer { margin-top: 24px; }
.home-quote-teaser .home-quote-description { margin: 24px 0 32px; }

.home-solid-link,
.home-quote-teaser .home-quote-link {
  box-sizing: border-box;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid #111;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .5px;
  text-align: center;
}
.home-solid-link { margin-top: 32px; }
.home-solid-link:hover,
.home-quote-teaser .home-quote-link:hover { background: #333; color: #fff; }
.home-projects-collection .home-projects-all-link {
  letter-spacing: .5px;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.gallery-card-btn { border-radius: var(--radius-sm); }
.home-project-selection-card .case-item-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  padding: 36px 18px 16px;
}
.home-quote-teaser .home-quote-photo a { border-radius: var(--radius-md); }
.home-project-selection-card .case-item-title .case-item-location {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: none;
}
.home-project-selection-card .case-item-title .case-item-name {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}
.home-quote-teaser .home-quote-photo figcaption { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* Extend only the painted backgrounds on phones, keeping the content gutters.
   An unblurred shadow does not increase layout width or create horizontal scroll. */
@media (max-width: 600px) {
  /* Outer wrappers already leave the same 20px gutter as product photos. */
  .home-solution-content,
  .home-why-proof,
  .home-projects-collection,
  .home-quote-teaser .home-quote-card,
  .home-quote-teaser .home-quote-intro,
  .home-quote-panel .home-quote-faq-full > .home-quote-faq-content {
    padding-left: 0;
    padding-right: 0;
  }
  .home-quote-faq-full > summary { margin-left: 0; margin-right: 0; }
  .home-solution-panel {
    --home-mobile-panel-color: var(--home-surface-warm);
    margin-top: 40px;
    padding-top: 24px;
    background: var(--home-mobile-panel-color);
  }
  .home-solution-photo { border-radius: var(--radius-md); }
  .home-solution-content { padding-top: 32px; padding-bottom: 40px; border-radius: 0; background: transparent; }
  .home-why-proof {
    --home-mobile-panel-color: var(--home-surface-muted);
    margin-top: 40px;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-projects-collection {
    --home-mobile-panel-color: var(--home-surface-white);
    margin-top: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .home-projects-collection .home-projects-heading-grid { padding: 0 0 24px; gap: 16px; }
  .home-quote-teaser { padding-top: 40px; }
  .home-quote-teaser .home-quote-panel { --home-mobile-panel-color: var(--home-surface-muted); }
  .home-quote-teaser .home-quote-card { padding-top: 24px; padding-bottom: 40px; }
  .home-quote-teaser .home-quote-intro { padding-top: 32px; padding-bottom: 0; }
  .home-solution-panel,
  .home-why-proof,
  .home-projects-collection,
  .home-quote-teaser .home-quote-panel {
    border-radius: 0;
    box-shadow: 0 0 0 100vmax var(--home-mobile-panel-color);
    clip-path: inset(0 -100vmax);
  }
}

.home-quote-teaser .home-quote-intro h2 {
  font-size: var(--home-section-heading-size);
  line-height: var(--home-section-heading-line-height);
  letter-spacing: var(--home-section-heading-spacing);
}
.home-why-proof-answer .home-proof-brief { display: none; }

@media (min-width: 981px) {
  .home-solution-panel { padding-top: 28px; }
  .home-solution-content { padding: 56px; }
  .home-why-proof { margin-top: 64px; margin-bottom: 0; padding: 56px 56px 40px; }
  .home-projects-collection { margin-top: 64px; padding: 0; }
  .home-projects-collection .home-projects-heading-grid { padding-top: 0; }
  .home-quote-teaser { padding-top: 64px; }
  .home-quote-teaser .home-quote-intro { padding-left: 56px; }
}

/* At intermediate widths the main container already supplies page gutters.
   Avoid applying a second set of outer gutters inside that container. */
@media (min-width: 601px) and (max-width: 980px) {
  .home-solution-panel,
  .home-why-proof,
  .home-projects-collection,
  .home-quote-teaser {
    position: static;
    left: auto;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
  .home-solution-panel,
  .home-quote-teaser { padding-left: 0; padding-right: 0; }
  .home-quote-teaser .home-quote-card { grid-template-columns: 1fr; min-height: 0; }
  .home-quote-teaser .home-quote-photo a { min-height: 340px; }
  .home-quote-teaser .home-quote-intro { padding: 36px 8px 16px; }
}

@media (max-width: 600px) {
  :root {
    --home-section-heading-size: 24px;
    --home-section-heading-spacing: .01em;
  }
  .header-top .logo-image { height: 44px; width: auto; }
  .home-why-proof-answer .home-proof-full { display: none; }
  .home-why-proof-answer .home-proof-brief { display: block; }
  .home-solution-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }
  .home-solution-list a {
    display: flex;
    min-height: 44px;
    align-items: center;
    font-size: 16px;
  }
  .home-solution-content h2 {
    font-size: 24px;
    letter-spacing: .01em;
    text-wrap: initial;
  }
  .home-solution-content .home-solid-link {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .home-solid-link,
  .home-quote-teaser .home-quote-link { padding-inline: 16px; }
}

/* Closing invitation: typography and spacing from the live LONGG homepage. */
.home-quote-teaser.home-quote-banner .home-quote-panel,
.home-quote-teaser.home-quote-banner .home-quote-card {
  --home-mobile-panel-color: #efefef;
  background: #efefef;
}
.home-quote-teaser.home-quote-banner .home-quote-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 60px 40px;
}
.home-quote-teaser.home-quote-banner .home-quote-intro {
  align-items: center;
  padding: 0;
  text-align: center;
}
.home-quote-teaser.home-quote-banner .home-quote-intro h2 {
  max-width: 620px;
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .5px;
  color: #000;
  text-wrap: initial;
}
.home-quote-teaser.home-quote-banner .home-quote-description {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 24px;
  color: #606060;
  text-wrap: initial;
}
.home-quote-banner .home-quote-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14px;
  text-align: center;
}
.home-quote-banner .home-quote-actions .home-quote-link,
.home-quote-banner .home-quote-actions .home-quote-faq-toggle { align-self: center; }
.home-quote-banner .home-quote-actions .home-quote-faq-toggle {
  margin: 0 0 38px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  line-height: 25.6px;
  color: #1a1a1a;
}
.home-quote-banner .home-quote-actions .home-quote-faq-toggle::after { content: none; }
.home-quote-banner .home-quote-actions .home-quote-link {
  min-width: 0;
  min-height: 0;
  padding: 14px 28px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: .5px;
}
.home-quote-banner .home-quote-actions .home-quote-link:hover {
  background: #111;
  color: #fff;
}
.home-quote-banner .home-quote-panel .home-quote-faq-full > .home-quote-faq-content {
  padding: 0 40px 40px;
  text-align: left;
}
@media (min-width: 601px) and (max-width: 980px) {
  .home-quote-teaser.home-quote-banner .home-quote-card { padding: 36px 28px; }
  .home-quote-teaser.home-quote-banner .home-quote-intro h2 { font-size: 32px; }
  .home-quote-banner .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding: 0 28px 32px; }
}
@media (max-width: 600px) {
  .home-quote-teaser.home-quote-banner .home-quote-card { padding: 32px 0; }
  .home-quote-teaser.home-quote-banner .home-quote-intro h2 { font-size: 24px; line-height: 1.3; margin-bottom: 16px; }
  .home-quote-banner .home-quote-actions { margin-top: 18px; }
  .home-quote-banner .home-quote-actions .home-quote-faq-toggle { margin-bottom: 28px; }
  .home-quote-banner .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding: 0 0 32px; }
}

/* The wrapper is layout-neutral on desktop and a native swipe strip on phones. */
.home-project-secondary { display: contents; }
.home-project-controls { display: none; }

@media (max-width: 600px) {
  .home-project-selection { display: block; aspect-ratio: auto; }
  .home-project-selection-lead { margin-bottom: 0; }
  .home-project-secondary {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 12px;
    min-width: 0;
    padding-bottom: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #a6ada0 transparent;
  }
  .home-project-secondary > .home-project-selection-card {
    grid-area: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }
  .home-project-secondary[data-carousel-ready] { scrollbar-width: none; }
  .home-project-secondary[data-carousel-ready]::-webkit-scrollbar { display: none; }
  .home-project-controls:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
  }
  .home-project-dots { display: flex; flex: 1; min-width: 0; align-items: center; justify-content: center; }
  .home-project-dots button {
    display: grid;
    place-items: center;
    width: 30px;
    flex: 0 1 30px;
    min-width: 20px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .home-project-dots button::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
  }
  .home-project-dots button[aria-current="true"]::before { background: #111; }
  .home-project-controls button:focus-visible { outline: 2px solid #454d42; outline-offset: 3px; }
  .home-project-secondary:focus-visible {
    outline: 2px solid #454d42;
    outline-offset: 4px;
    border-radius: var(--radius-md);
  }
  .home-project-selection-card .case-item-title {
    padding: 36px 14px 14px;
    font-size: 16px;
    line-height: 1.4;
  }
}

.home-quote { max-width:1440px; margin:0 auto; padding:32px 40px 64px; scroll-margin-top:120px; font-family:var(--font-body); color:var(--text-color); }
@media (min-width:981px) {
  .home-quote { position:relative; left:50%; width:min(1360px, calc(100vw - 80px)); max-width:none; margin-left:0; margin-right:0; padding-left:0; padding-right:0; transform:translateX(-50%); }
}
.home-quote-card { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); background:#f0ede7; border:1px solid #e7e4de; border-radius:var(--radius-md); overflow:hidden; }
.home-quote-intro { display:flex; flex-direction:column; min-width:0; padding:48px; }
.home-quote-intro h2,.home-quote-intro h1 { margin:0; font-family:var(--font-title); font-size:var(--home-section-heading-size); font-weight:var(--home-section-heading-weight); line-height:var(--home-section-heading-line-height); letter-spacing:var(--home-section-heading-spacing); color:#111; text-transform:uppercase; text-wrap:balance; }
.home-quote-description { max-width:450px; margin:22px 0 32px; font-size:17px; line-height:1.68; color:#50504b; text-wrap:pretty; }
.home-quote-photo { margin:auto 0 0; }
.home-quote-photo figcaption { margin-top:12px; color:var(--light-text); font-size:13px; line-height:1.5; }
.home-quote-photo img { display:block; width:100%; height:auto; aspect-ratio:1.8; object-fit:cover; object-position:50% 65%; border-radius:3px; transition:transform .35s ease; }
.home-quote-form { display:flex; flex-direction:column; gap:24px; padding:48px; margin:0; background:#fcfbf9; border-left:1px solid #e7e4de; min-width:0; }
.home-quote-field { display:block; font-size:14px; font-weight:500; color:var(--text-color); }
.home-quote-optional { margin-left:6px; color:#74776f; font-size:12px; font-weight:400; }
.home-quote-field input,.home-quote-field select,.home-quote-field textarea { display:block; width:100%; min-width:0; margin-top:10px; padding:13px 16px; border:1px solid #deddd7; border-radius:3px; background:#fff; color:var(--text-color); font:400 15px/1.5 var(--font-body); transition:border-color .18s ease; }
.home-quote-field input,.home-quote-field select { min-height:50px; }
.home-quote-field textarea { resize:vertical; min-height:108px; }
.home-quote-field input:hover,.home-quote-field select:hover,.home-quote-field textarea:hover { border-color:#aaa99f; }
.home-quote-field input::placeholder,.home-quote-field textarea::placeholder { color:#7a7d74; opacity:1; }
.home-quote-types { border:0; margin:0; padding:0; min-width:0; }
.home-quote-types legend { padding:0; margin-bottom:10px; font-size:14px; font-weight:500; }
.home-quote-types legend span { display:inline-block; margin-left:6px; font-size:12px; font-weight:400; color:#74776f; }
.home-quote-choices { display:flex; flex-wrap:wrap; gap:8px; }
.home-quote-choices label { position:relative; cursor:pointer; }
.home-quote-choices input { position:absolute; width:1px; height:1px; opacity:0; }
.home-quote-choices span { display:block; min-height:44px; padding:10px 14px; border:1px solid #deddd7; border-radius:3px; background:transparent; font-size:14px; line-height:22px; color:var(--light-text); transition:background .15s,color .15s,border-color .15s; }
.home-quote-choices input:checked + span { background:#111; border-color:#111; color:#fff; }
.home-quote-choices label:hover span { border-color:#111; }
.home-quote-field input:focus-visible,.home-quote-field select:focus-visible,.home-quote-field textarea:focus-visible,.home-quote-choices input:focus-visible + span,.home-quote-submit:focus-visible,.home-quote-faq summary:focus-visible { outline:2px solid #555; outline-offset:3px; }
.home-quote-submit { display:flex; justify-content:center; align-items:center; min-height:54px; padding:14px 24px; border:1px solid #111; border-radius:3px; background:#111; color:#fff; font:500 14px/1.6 var(--font-body); letter-spacing:.06em; text-transform:uppercase; cursor:pointer; transition:background .15s; }
.home-quote-submit:hover { background:#353c40; }
.home-quote-submit:disabled { opacity:.55; cursor:not-allowed; }
.home-quote-demo-note { margin:-12px 0 0; color:#72766d; font-size:12px; line-height:1.5; text-align:center; }
.home-quote-status { margin:0; padding:12px 14px; border-left:3px solid #555; background:#edf2eb; color:#304432; font-size:14px; line-height:1.6; }
.home-quote-faq { margin-top:24px; border-bottom:1px solid #e2e2dc; }
.home-quote-faq summary { display:flex; justify-content:space-between; align-items:center; gap:20px; padding:18px 0; color:var(--text-color); font-size:14px; cursor:pointer; list-style:none; }
.home-quote-faq summary::-webkit-details-marker { display:none; }
.home-quote-faq summary::after { content:'+'; font-size:22px; font-weight:400; line-height:1; color:var(--light-text); }
.home-quote-faq[open] summary::after { content:'−'; }
.home-quote-faq-content { max-width:960px; padding:12px 0 24px; color:#50554c; font-size:15px; line-height:1.75; }
.home-quote-faq-content h2 { margin:24px 0 12px; font-size:24px; font-weight:500; }
.home-quote-faq-content h3 { margin:20px 0 8px; font-size:17px; font-weight:500; }
.home-quote-faq-content p { margin:0 0 14px; }
@media(max-width:1100px) { .home-quote-intro,.home-quote-form { padding:32px; } }
@media(max-width:800px) { .home-quote-card { grid-template-columns:1fr; } .home-quote-form { border-left:0; border-top:1px solid #e7e4de; } .home-quote-description { max-width:560px; } }
@media(max-width:600px) { .home-quote { padding:24px 20px 48px; } .home-quote-intro { padding:30px 24px; } .home-quote-description { margin:19px 0 26px; font-size:14px; line-height:1.65; } .home-quote-form { padding:28px 24px; gap:22px; } .home-quote-photo img { aspect-ratio:4 / 3; } .home-quote-choices span { padding:10px 12px; } .home-quote-field input,.home-quote-field select,.home-quote-field textarea { font-size:16px; } }

.home-quote-photo a { display:block; overflow:hidden; border-radius:3px; }
.home-quote-photo a:focus-visible { outline:2px solid #111; outline-offset:4px; }
@media(hover:hover) and (prefers-reduced-motion:no-preference) { .home-quote-photo a:hover img { transform:scale(1.025); } }
@media(prefers-reduced-motion:reduce) { .home-quote *, .home-quote *::after { transition:none; } }

/* Inset project photo on a soft sage panel; enquiries stay on /contact/. */
.home-quote-panel { background:#e3e7dd; border-radius:var(--radius-md); }
.home-quote-panel > .home-quote-faq { margin:0 28px; border:0; }
.home-quote-panel > .home-quote-faq summary { padding:20px 0; }
.home-quote-panel .home-quote-faq-content { padding-bottom:24px; }
@media(max-width:800px) { .home-quote-panel > .home-quote-faq { margin-right:24px; margin-left:24px; } }
@media(max-width:600px) { .home-quote-panel > .home-quote-faq { margin-right:16px; margin-left:16px; } }
.home-quote-teaser .home-quote-card { grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr); min-height:520px; padding:28px; border:0; background:#e3e7dd; }
@media(min-width:981px) {
  /* Match the right edge of the second project column above (20px grid gap). */
  .home-quote-teaser .home-quote-card { grid-template-columns:calc(50% - 10px) calc(50% + 10px); }
}
.home-quote-teaser .home-quote-intro { justify-content:center; padding:40px 24px 40px 48px; }
.home-quote-teaser .home-quote-intro h2 { color:#20261f; font-size:clamp(32px,3.2vw,46px); line-height:1.15; letter-spacing:.005em; text-wrap:initial; }
.home-quote-teaser .home-quote-description { max-width:450px; margin:28px 0 34px; color:#454d42; font-size:17px; line-height:1.7; }
.home-quote-link { align-self:flex-start; min-width:230px; min-height:54px; padding:16px 26px; border-radius:var(--radius-sm); text-decoration:none; }
.home-quote-link:hover { color:#fff; }
.home-quote-link:focus-visible { outline:2px solid #20261f; outline-offset:5px; }
.home-quote-teaser .home-quote-photo { position:relative; display:flex; flex-direction:column; margin:0; min-width:0; }
.home-quote-teaser .home-quote-photo a { position:relative; flex:1; min-height:464px; border-radius:4px; }
.home-quote-teaser .home-quote-photo img { position:absolute; inset:0; height:100%; aspect-ratio:auto; object-position:center; border-radius:0; }
.home-quote-teaser .home-quote-photo figcaption { position:absolute; bottom:0; left:0; right:0; margin:0; padding:44px 28px 20px; border-radius:0 0 4px 4px; background:linear-gradient(transparent, rgb(0 0 0 / 65%)); color:#fff; pointer-events:none; }
.contact-quote .home-quote-form { scroll-margin-top:130px; }
.home-quote-faq-toggle { align-self:flex-start; display:inline-flex; align-items:center; gap:14px; margin:16px 0 0; padding:4px 0; border:0; background:transparent; font:400 13px/1.5 var(--font-body); color:#454d42; cursor:pointer; }
.home-quote-faq-toggle::after { content:'+'; font-size:18px; line-height:1; }
.home-quote-faq-toggle[aria-expanded="true"]::after { content:'−'; }
.home-quote-faq-toggle:focus-visible { outline:2px solid #555; outline-offset:4px; }
.home-quote-faq-toggle[hidden],.home-quote-faq-full > summary[hidden] { display:none; }
.home-quote-faq-full { margin:0; border:0; }
.home-quote-faq-full > summary { margin:0 28px; padding:12px 0; cursor:pointer; font-size:13px; }
.home-quote-panel .home-quote-faq-full > .home-quote-faq-content { width:100%; max-width:none; padding:0 28px 28px; }
.home-quote-faq-full .home-quote-faq-content h3 { font-size:17px; line-height:1.45; }
.home-quote-faq-close { display:inline-flex; align-items:center; gap:10px; margin-top:12px; padding:10px 0; border:0; background:transparent; font:400 13px/1.5 var(--font-body); color:#454d42; cursor:pointer; }
.home-quote-faq-close::after { content:'−'; font-size:18px; }
.home-quote-faq-close:hover { text-decoration:underline; text-underline-offset:4px; }
.home-quote-faq-close:focus-visible { outline:2px solid #555; outline-offset:4px; }
.home-quote-faq-close[hidden] { display:none; }
@media(max-width:800px) { .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding:0 24px 24px; } }
@media(max-width:600px) { .home-quote-panel .home-quote-faq-full > .home-quote-faq-content { padding:0 16px 24px; } }
@media(max-width:1100px) { .home-quote-teaser .home-quote-intro { padding:32px 12px 32px 32px; } }
@media(max-width:800px) { .home-quote-teaser .home-quote-card { grid-template-columns:1fr; min-height:0; padding:24px; } .home-quote-teaser .home-quote-photo a { min-height:340px; } .home-quote-teaser .home-quote-intro { padding:36px 8px 16px; } }
@media(max-width:600px) { .home-quote-teaser .home-quote-card { padding:16px; } .home-quote-teaser .home-quote-intro { padding:30px 8px 16px; } .home-quote-teaser .home-quote-intro h2 { font-size:var(--home-section-heading-size); } .home-quote-teaser .home-quote-description { margin:22px 0 28px; font-size:15px; } .home-quote-teaser .home-quote-photo a { min-height:260px; } .home-quote-link { min-width:0; font-size:13px; } }


/* ========================================
   LONGG /solutions 总览页（从 LONGG-home-preview 提取）
   仅作用于 .longg-solutions.ls-overview，不混入其它页面样式。
   ======================================== */

/* 01 基础：与首页统一的 1360px 内容边界、正文和小圆角。 */
.longg-solutions {
  --ls-ink:#171717; --ls-copy:#50504c; --ls-warm:#f0ede7;
  --ls-muted:#e6e6dc; --ls-white:#fff; --ls-line:#d3d3c9;
  max-width:none; margin:0 auto;
  padding:28px 0 24px; color:var(--ls-ink); font-family:var(--font-body);
}
.longg-solutions * { box-sizing:border-box; }
.longg-solutions :is(h1,h2,h3,p,figure,dl,dd) { margin:0; }
.longg-solutions :is(h1,h2) { font:500 38px/1.25 var(--font-body); letter-spacing:.01em; color:var(--ls-ink); }
.longg-solutions :is(h1,h2,h3) { text-wrap:balance; }
.longg-solutions p { text-wrap:pretty; }
.longg-solutions p { font-size:16px; line-height:1.7; color:var(--ls-copy); }
.longg-solutions a { color:inherit; }
.longg-solutions img { display:block; width:100%; object-fit:cover; }
.longg-solutions .ls-button { display:inline-flex; align-items:center; justify-content:center; min-height:50px; padding:12px 26px; border:1px solid #111; border-radius:3px; background:#111; color:#fff; font-size:16px; font-weight:500; line-height:24px; letter-spacing:.04em; text-decoration:none; }
.longg-solutions .ls-button:hover { background:#333; border-color:#333; }
.longg-solutions .ls-text-link { font-size:16px; line-height:1.6; text-decoration:underline; text-underline-offset:5px; text-decoration-thickness:1px; }
.longg-solutions a:focus-visible { outline:2px solid #171717; outline-offset:5px; }
.longg-solutions section[id] { scroll-margin-top:100px; }

/* 02 首屏：等宽双栏。 */
.ls-hero { position:relative; display:grid; grid-template-columns:1fr 1fr; border-radius:6px; overflow:hidden; background:var(--ls-warm); }
.ls-hero-copy { display:flex; min-height:460px; flex-direction:column; align-items:flex-start; justify-content:center; padding:44px 48px; }
.ls-hero h1 { max-width:550px; font-size:40px; }
.ls-hero-copy > p { margin-top:22px; max-width:500px; }
.ls-hero .ls-button { margin-top:28px; }
.longg-solutions .ls-hero-image { position:absolute; inset:0 0 0 50%; width:50%; height:100%; border-radius:0; object-position:50% 50%; }

/* 03 六类场景。 */
.ls-venues { padding:64px 0; }
.ls-section-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:28px; }
.ls-section-heading h2 { max-width:650px; }
.ls-section-heading p { max-width:350px; }
.ls-venues .ls-section-heading { align-items:flex-start; flex-direction:column; gap:12px; text-align:left; }
.ls-venues .ls-section-heading p { max-width:720px; }
.ls-venue-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:40px 24px; }
.ls-venue-grid article { min-width:0; }
.ls-venue-card { display:flex; flex-direction:column; align-items:flex-start; height:100%; text-decoration:none; }
.ls-card-image { width:100%; aspect-ratio:4/3; overflow:hidden; border-radius:5px; background:var(--ls-warm); }
.ls-card-image img { height:100%; }
.ls-venue-card h3 { margin-top:20px; font:500 21px/1.35 var(--font-body); letter-spacing:.01em; }
.ls-venue-card p { margin:10px 0 12px; font-size:16px; }

/* 04 配套定制。 */
.ls-custom { display:grid; grid-template-columns:1fr 1fr; background:var(--ls-muted); border-radius:6px; overflow:hidden; }
.ls-custom > img { height:100%; min-height:480px; }
.ls-custom-copy { padding:44px 48px; }
.ls-custom-copy > p { margin-top:22px; }
.ls-custom-details { display:grid; gap:18px; padding-top:26px; }
.ls-custom-details dt { margin-bottom:4px; font-size:16px; font-weight:500; }
.ls-custom-details dd { font-size:16px; line-height:1.65; color:var(--ls-copy); }
.ls-inline-link { display:inline-flex; align-items:center; min-height:44px; margin-top:20px; }

/* 05 页面收尾：浅灰居中询价。 */
.ls-quote { margin-top:64px; padding:48px 32px; border-radius:6px; background:#efefef; text-align:center; }
.ls-quote p { margin:20px auto 26px; max-width:650px; }

/* 06 案例证据、流程、FAQ。 */
.longg-solutions .ls-order-guide.ls-order-guide-editorial { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); margin-top:64px; padding:0; overflow:hidden; border-radius:6px; background:var(--ls-warm); }
.longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-copy { align-self:center; padding:42px 48px; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial header { margin-bottom:28px; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial header h2 { margin:0; text-align:left; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial header p { max-width:520px; margin:16px 0 0; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial figure { min-height:610px; overflow:hidden; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial figure img { width:100%; height:100%; object-fit:cover; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial ol { margin:0; padding:0; list-style:none; grid-template-columns:1fr; gap:0; border-top:1px solid var(--ls-line); border-bottom:1px solid var(--ls-line); }
.longg-solutions .ls-order-guide.ls-order-guide-editorial li { display:grid; grid-template-columns:42px minmax(0,1fr); align-items:start; gap:16px; padding:19px 0; border-bottom:1px solid var(--ls-line); text-align:left; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial li:last-child { border-bottom:0; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-step-icon { display:block; width:30px; height:30px; margin-top:1px; color:#3f3f3b; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial h3 { margin:0 0 7px; }
.longg-solutions .ls-order-guide.ls-order-guide-editorial li p { max-width:none; margin:0; }

.longg-solutions .ls-question-toggle { flex:0 0 12px; height:12px; position:relative; }
.longg-solutions .ls-question-toggle::before,.longg-solutions .ls-question-toggle::after { content:''; position:absolute; background:currentColor; }
.longg-solutions .ls-question-toggle::before { top:5px; left:0; width:12px; height:1px; }
.longg-solutions .ls-question-toggle::after { top:0; left:5px; width:1px; height:12px; }
.longg-solutions details[open] .ls-question-toggle::after { display:none; }
.longg-solutions summary:focus-visible { outline:2px solid #171717; outline-offset:4px; }

.longg-solutions .ls-project-evidence { padding-top:72px; }
.longg-solutions .ls-venues + .ls-project-evidence { padding-top:0; padding-bottom:72px; }
.longg-solutions .ls-project-evidence .ls-section-heading { margin-bottom:30px; }
.longg-solutions .ls-project-evidence .ls-section-heading > a { display:inline-flex; align-items:center; min-height:44px; flex-shrink:0; }
.longg-solutions .ls-evidence-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.longg-solutions .ls-evidence-card { min-width:0; }
.longg-solutions .ls-evidence-image { position:relative; display:block; overflow:hidden; border-radius:6px; }
.longg-solutions .ls-evidence-image::after { content:""; position:absolute; right:0; bottom:0; left:0; height:34%; background:linear-gradient(180deg,transparent,rgba(0,0,0,.42)); pointer-events:none; }
.longg-solutions .ls-evidence-image img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.longg-solutions .ls-evidence-location { position:absolute; z-index:1; bottom:18px; left:20px; margin:0; color:#fff; font-size:16px; font-weight:500; letter-spacing:.02em; line-height:1.4; }
.longg-solutions .ls-evidence-copy { padding:22px 4px 0; }
.longg-solutions .ls-evidence-copy h3 { margin:0; font:500 26px/1.3 var(--font-body); letter-spacing:-.01em; }
.longg-solutions .ls-evidence-title-link { color:inherit; text-decoration:none; }
.longg-solutions .ls-evidence-title-link:hover { text-decoration:underline; text-underline-offset:4px; }
.longg-solutions .ls-evidence-summary { max-width:590px; margin:14px 0 0; color:var(--ls-copy); font-size:16px; line-height:1.7; }

.longg-solutions .ls-quote-faq { margin-top:16px; }
.longg-solutions .ls-quote-faq > summary { display:flex; align-items:center; justify-content:center; gap:16px; width:fit-content; max-width:100%; min-height:44px; margin:0 auto; padding:8px 0; list-style:none; cursor:pointer; font-size:16px; line-height:1.5; color:var(--ls-copy); }
.longg-solutions .ls-quote-faq > summary::-webkit-details-marker { display:none; }
.longg-solutions .ls-quote-faq > summary:hover { color:var(--ls-ink); }
.longg-solutions .ls-quote-faq-content { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 48px; padding-top:28px; text-align:left; }
.longg-solutions .ls-quote-faq-content h3 { font:500 18px/1.5 var(--font-body); }
.longg-solutions .ls-quote-faq-content p { margin:10px 0 0; max-width:none; font-size:16px; line-height:1.75; }

/* 07 总览页最终协调层。 */
.longg-solutions.ls-overview {
  --ls-overview-gap:72px;
  --ls-overview-panel:#e8e8df;
  --ls-overview-warm:#f0ede7;
  --ls-overview-line:#d3d3c9;
}

.longg-solutions.ls-overview .ls-hero { grid-template-columns:minmax(0,1fr) minmax(0,1fr); min-height:620px; }
.longg-solutions.ls-overview .ls-hero-copy { min-height:620px; padding:56px 48px; }
.longg-solutions.ls-overview .ls-hero h1 { max-width:560px; font-size:40px; line-height:1.2; letter-spacing:0; }
.longg-solutions.ls-overview .ls-hero-copy > p { max-width:525px; margin-top:24px; font-size:16px; line-height:1.72; }
.longg-solutions.ls-overview .ls-hero .ls-button { margin-top:30px; }
.longg-solutions.ls-overview .ls-hero-image { inset:0 0 0 50%; width:50%; }

.longg-solutions.ls-overview .ls-venues { padding:var(--ls-overview-gap) 0; }
.longg-solutions.ls-overview .ls-venues .ls-section-heading { gap:12px; margin-bottom:34px; }
.longg-solutions.ls-overview .ls-venues .ls-section-heading h2,
.longg-solutions.ls-overview .ls-project-evidence .ls-section-heading h2 { max-width:820px; font-size:34px; line-height:1.22; }
.longg-solutions.ls-overview .ls-venues .ls-section-heading p { max-width:760px; font-size:16px; line-height:1.68; }
.longg-solutions.ls-overview .ls-venue-grid { gap:40px 24px; }
.longg-solutions.ls-overview .ls-card-image { aspect-ratio:16/10; }
.longg-solutions.ls-overview .ls-venue-card h3 { margin-top:17px; font-size:20px; line-height:1.35; }
.longg-solutions.ls-overview .ls-venue-card p { margin:8px 0 0; font-size:16px; line-height:1.62; }

.longg-solutions.ls-overview .ls-venues + .ls-project-evidence { padding:0 0 var(--ls-overview-gap); }
.longg-solutions.ls-overview .ls-project-evidence .ls-section-heading { margin-bottom:32px; }
.longg-solutions.ls-overview .ls-evidence-image img { aspect-ratio:16/10; }
.longg-solutions.ls-overview .ls-evidence-copy { padding-top:20px; }
.longg-solutions.ls-overview .ls-evidence-copy h3 { font-size:24px; }
.longg-solutions.ls-overview .ls-evidence-summary { margin-top:11px; font-size:16px; line-height:1.65; }

.longg-solutions.ls-overview .ls-custom,
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial { grid-template-columns:minmax(0,1fr) minmax(0,1fr); min-height:600px; }
.longg-solutions.ls-overview .ls-custom { background:var(--ls-overview-panel); }
.longg-solutions.ls-overview .ls-custom > img { align-self:stretch; width:calc(100% - 44px); height:auto; min-height:0; margin:44px 0 44px 44px; border-radius:5px; }
.longg-solutions.ls-overview .ls-custom-copy { align-self:center; padding:44px 48px; }
.longg-solutions.ls-overview .ls-custom-copy h2,
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial header h2,
.longg-solutions.ls-overview .ls-quote h2 { font-size:34px; line-height:1.22; }
.longg-solutions.ls-overview .ls-custom-copy > p { margin-top:18px; font-size:16px; line-height:1.68; }
.longg-solutions.ls-overview .ls-custom-details { gap:0; padding-top:24px; border-top:1px solid var(--ls-overview-line); }
.longg-solutions.ls-overview .ls-custom-details > div { padding:14px 0; border-bottom:1px solid var(--ls-overview-line); }
.longg-solutions.ls-overview .ls-custom-details dt { font-size:17px; }
.longg-solutions.ls-overview .ls-custom-details dd { margin-top:5px; font-size:16px; line-height:1.62; }
.longg-solutions.ls-overview .ls-inline-link { margin-top:14px; }

.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial { margin-top:var(--ls-overview-gap); background:var(--ls-overview-warm); }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial .ls-process-copy { align-self:center; padding:44px 48px; }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial header { margin-bottom:24px; }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial header p { margin-top:16px; font-size:16px; line-height:1.68; }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial li { grid-template-columns:40px minmax(0,1fr); gap:16px; padding:15px 0; border-color:var(--ls-overview-line); }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial h3 { margin-bottom:5px; font-size:18px; }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial li p { font-size:16px; line-height:1.62; }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure { display:flex; min-height:0; padding:44px 44px 44px 0; }
.longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure img { height:auto; border-radius:5px; }

.longg-solutions.ls-overview .ls-quote { margin-top:var(--ls-overview-gap); padding:56px 36px; }
.longg-solutions.ls-overview .ls-quote p { margin:18px auto 24px; }
.longg-solutions.ls-overview .ls-quote-faq { margin-top:14px; }

/* 08 响应式。 */
@media(max-width:1100px) {
  .ls-hero-copy,.ls-custom-copy { padding:32px; }
  .longg-solutions :is(h1,h2) { font-size:32px; }
  .ls-section-heading { display:block; }
  .ls-section-heading p { margin-top:14px; max-width:none; }
  .ls-venue-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .longg-solutions .ls-evidence-grid { gap:20px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial { grid-template-columns:1fr; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:36px 40px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial header p { max-width:620px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial figure { min-height:0; aspect-ratio:16/9; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial ol { gap:0; }
  .longg-solutions.ls-overview { --ls-overview-gap:60px; }
  .longg-solutions.ls-overview .ls-hero,
  .longg-solutions.ls-overview .ls-hero-copy { min-height:570px; }
  .longg-solutions.ls-overview .ls-hero-copy { padding:44px 40px; }
  .longg-solutions.ls-overview .ls-hero h1 { font-size:36px; }
  .longg-solutions.ls-overview .ls-venues .ls-section-heading h2,
  .longg-solutions.ls-overview .ls-project-evidence .ls-section-heading h2,
  .longg-solutions.ls-overview .ls-custom-copy h2,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial header h2,
  .longg-solutions.ls-overview .ls-quote h2 { font-size:30px; }
  .longg-solutions.ls-overview .ls-custom-copy,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:38px 40px; }
  .longg-solutions.ls-overview .ls-custom > img { width:calc(100% - 38px); margin:38px 0 38px 38px; }
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure { padding:38px 38px 38px 0; }
}

@media(max-width:900px) {
  .longg-solutions.ls-overview .ls-custom,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial { grid-template-columns:1fr; min-height:0; }
  .longg-solutions.ls-overview .ls-custom > img,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure { width:auto; height:auto; margin:0; padding:28px 28px 0; }
  .longg-solutions.ls-overview .ls-custom > img,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure img { aspect-ratio:16/10; }
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure { order:-1; }
}

@media(max-width:700px) {
  .longg-solutions { width:calc(100% - 40px); padding:76px 0 20px; }
  .longg-solutions :is(h1,h2) { font-size:26px; line-height:1.3; }
  .longg-solutions p { font-size:16px; }
  .ls-hero,.ls-custom { grid-template-columns:1fr; }
  .ls-hero-copy,.ls-custom-copy { padding:28px 24px; }
  .ls-hero-copy > p,.ls-custom-copy > p { margin-top:18px; }
  .ls-hero .ls-button { margin-top:22px; }
  .ls-hero-copy { min-height:0; }
  .longg-solutions .ls-hero-image { position:static; width:100%; height:auto; aspect-ratio:4/3; }
  .ls-venues { padding:44px 0; }
  .ls-venue-grid { grid-template-columns:1fr; gap:28px; }
  .ls-venue-card h3 { margin-top:16px; font-size:20px; }
  .ls-venue-card p { margin-bottom:4px; }
  .ls-custom > img { height:auto; min-height:0; aspect-ratio:4/3; }
  .ls-custom-details { padding-top:22px; }
  .ls-quote { margin-top:44px; padding:32px 24px; }
  .ls-quote p br { display:none; }
  .longg-solutions .ls-button { max-width:100%; padding-left:18px; padding-right:18px; }
  .longg-solutions .ls-project-evidence { padding-top:40px; }
  .longg-solutions .ls-venues + .ls-project-evidence { padding-top:0; padding-bottom:44px; }
  .longg-solutions .ls-project-evidence .ls-section-heading { margin-bottom:20px; }
  .longg-solutions .ls-evidence-grid { grid-template-columns:1fr; gap:38px; }
  .longg-solutions .ls-evidence-image img { aspect-ratio:4/3; }
  .longg-solutions .ls-evidence-copy { padding:18px 2px 0; }
  .longg-solutions .ls-evidence-location { bottom:14px; left:15px; font-size:16px; }
  .longg-solutions .ls-evidence-copy h3 { font-size:21px; }
  .longg-solutions .ls-evidence-summary { margin-top:11px; font-size:16px; line-height:1.65; }
  .longg-solutions .ls-quote-faq-content { grid-template-columns:1fr; gap:24px; padding-top:20px; }
  .longg-solutions .ls-quote-faq-content h3 { font-size:17px; }
  .longg-solutions .ls-quote-faq > summary { font-size:16px; gap:12px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial { margin-top:44px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:28px 24px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial header { margin-bottom:22px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial header p { margin-top:14px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial figure { aspect-ratio:4/3; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial ol { grid-template-columns:1fr; gap:0; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial li { grid-template-columns:38px minmax(0,1fr); gap:14px; padding:20px 0; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-step-icon { width:28px; height:28px; }
  .longg-solutions.ls-overview { --ls-overview-gap:44px; }
  .longg-solutions.ls-overview .ls-hero { grid-template-columns:1fr; min-height:0; }
  .longg-solutions.ls-overview .ls-hero-copy { min-height:0; padding:32px 24px; }
  .longg-solutions.ls-overview .ls-hero h1 { font-size:28px; }
  .longg-solutions.ls-overview .ls-hero-copy > p { margin-top:18px; font-size:16px; }
  .longg-solutions.ls-overview .ls-hero-image { position:static; width:100%; height:auto; aspect-ratio:4/3; }
  .longg-solutions.ls-overview .ls-venues .ls-section-heading { margin-bottom:24px; }
  .longg-solutions.ls-overview .ls-venues .ls-section-heading h2,
  .longg-solutions.ls-overview .ls-project-evidence .ls-section-heading h2,
  .longg-solutions.ls-overview .ls-custom-copy h2,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial header h2,
  .longg-solutions.ls-overview .ls-quote h2 { font-size:25px; }
  .longg-solutions.ls-overview .ls-card-image { aspect-ratio:4/3; }
  .longg-solutions.ls-overview .ls-venue-grid { gap:30px; }
  .longg-solutions.ls-overview .ls-venues + .ls-project-evidence { padding-bottom:var(--ls-overview-gap); }
  .longg-solutions.ls-overview .ls-evidence-image img { aspect-ratio:4/3; }
  .longg-solutions.ls-overview .ls-custom > img,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure { padding:20px 20px 0; }
  .longg-solutions.ls-overview .ls-custom > img,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial figure img { aspect-ratio:4/3; }
  .longg-solutions.ls-overview .ls-custom-copy,
  .longg-solutions.ls-overview .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:28px 24px 30px; }
  .longg-solutions.ls-overview .ls-quote { padding:36px 24px; }
}


/* ========================================
   LONGG /solutions 子分类页（从 LONGG-home-preview/fine-dining 提取）
   补充总览页样式之外的子分类专用规则：
   solution-detail-redesign.css → 子页面专有；
   solution-commerce.css → 产品/案例/FAQ/编辑流程等共用了 ls-overview 与 ls-detail。
   加载顺序：基础 + 总览 → 本段 → 子页最终协调 → 响应式。
   ======================================== */

/* 01 子页基础变量：子页用独立 gap 与三档颜色方便与总览共存。 */
.longg-solutions.ls-detail {
  --ls-detail-gap:72px;
  --ls-detail-panel:#e8e8df;
  --ls-detail-warm:#f0ede7;
  --ls-detail-line:#d3d3c9;
}

/* 02 子页首屏：与总页共用 .ls-hero，子页将其左右均分并占满大尺寸。 */
.ls-detail .ls-hero { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); min-height:620px; background:var(--ls-detail-warm); }
.ls-detail .ls-hero::after { content:none; }
.ls-detail .ls-hero-copy { position:relative; z-index:1; min-height:620px; align-items:flex-start; justify-content:center; padding:56px 48px; text-align:left; }
.ls-detail .ls-hero h1 { max-width:560px; color:var(--ls-ink); font-size:40px; line-height:1.2; letter-spacing:0; }
.ls-detail .ls-hero-copy > p { max-width:525px; margin-top:24px; color:var(--ls-copy); font-size:16px; line-height:1.72; }
.ls-detail .ls-hero .ls-button { min-height:50px; margin-top:30px; padding:12px 26px; border-color:#111; background:#111; color:#fff; }
.ls-detail .ls-hero .ls-button:hover { border-color:#333; background:#333; }
.longg-solutions.ls-detail .ls-hero-image { position:absolute; z-index:0; inset:0 0 0 50%; width:50%; height:100%; object-position:50% 50%; }
.ls-hero-note { position:absolute; z-index:2; right:20px; bottom:20px; padding:6px 10px; border-radius:3px; background:rgba(255,255,255,.9); color:#333; font-size:16px; }

/* 03 项目规划：与首屏相同的双栏节奏，图文分别填满，背景色用淡灰面板以便与其它模块区分。 */
.ls-project-plan { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); margin-top:var(--ls-detail-gap); overflow:hidden; border-radius:6px; background:var(--ls-detail-panel); }
.ls-project-plan figure { display:flex; min-height:620px; align-items:stretch; padding:44px 0 44px 44px; overflow:hidden; }
.ls-project-plan figure img { width:100%; height:100%; border-radius:5px; object-fit:cover; }
.ls-project-plan-copy { align-self:center; padding:44px 48px; }
.ls-project-plan-copy h2 { max-width:650px; font-size:34px; line-height:1.22; letter-spacing:0; }
.ls-project-plan-intro { max-width:620px; margin-top:18px; font-size:16px; line-height:1.68; }
.ls-decision-list { margin-top:26px; border-top:1px solid var(--ls-detail-line); }
.ls-decision-list article { padding:17px 0; border-bottom:1px solid var(--ls-detail-line); }
.ls-decision-list h3 { margin:0; font:500 18px/1.4 var(--font-body); }
.ls-decision-list p { margin:7px 0 0; color:var(--ls-copy); font-size:16px; line-height:1.65; }

/* 04 产品展示：桌面四列 / 手机两列；contain 保留原始比例，不截断桌脚/椅背。 */
.longg-solutions .ls-products { padding:60px 0; }
.longg-solutions .ls-product-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; }
.longg-solutions .ls-product-grid article { min-width:0; }
.longg-solutions .ls-product-card { display:flex; flex-direction:column; height:100%; text-decoration:none; }
.longg-solutions .ls-product-photo { display:flex; aspect-ratio:1; overflow:hidden; border-radius:4px; background:#f7f7f5; }
.longg-solutions .ls-product-photo img { height:100%; object-fit:contain; }
.longg-solutions .ls-product-card h3 { margin:18px 0 12px; font:500 16px/1.4 var(--font-body); letter-spacing:.01em; text-decoration:none; text-transform:uppercase; }
.longg-solutions .ls-product-card:hover h3 { text-decoration:none; }

/* 05 HOW WE WORK 通用版：总览页可在编辑流程之外使用四列图标流程。 */
.longg-solutions .ls-order-guide { padding:60px 0; }
.longg-solutions .ls-order-guide h2 { font-size:30px; margin-bottom:36px; text-align:center; }
.longg-solutions .ls-order-guide ol { margin:0; padding:0; list-style:none; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:32px; }
.longg-solutions .ls-order-guide li { display:flex; flex-direction:column; align-items:center; gap:20px; text-align:center; }
.longg-solutions .ls-order-guide h3 { font:500 19px/1.4 var(--font-body); margin-bottom:10px; }
.longg-solutions .ls-order-guide p { font-size:16px; max-width:280px; margin:0 auto; }

/* 06 FAQ 增强：仅作用于 .ls-faq-enhanced，全站一致。 */
.longg-solutions .ls-faq-toggle,
.longg-solutions .ls-faq-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font: 400 16px/1.6 var(--font-body);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.longg-solutions .ls-faq-toggle { margin: 16px auto 0; }
.longg-solutions .ls-quote-faq.ls-faq-enhanced { margin-top: 28px; }
.longg-solutions .ls-quote-faq.ls-faq-enhanced > summary[hidden] { display: none; }
.longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content {
  gap: 0 48px;
  padding-top: 0;
}
.longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content > div {
  padding: 22px 0 24px;
  border-bottom: 1px solid #d7d7d1;
}
.longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content p {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-faq-close {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 18px;
}
/* 询价条内的 FAQ 入口与按钮：FAQ 入口在按钮上方一行。 */
.longg-solutions .ls-quote .ls-faq-toggle {
  display: flex;
  width: fit-content;
  margin: 16px auto 0;
}
.longg-solutions .ls-quote .ls-faq-toggle + .ls-button {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

/* 07 子页最终协调层：所有内容区共用同一标题、间距和分隔规则；总览页不受影响。 */
.longg-solutions.ls-detail .ls-products { padding:72px 0 0; }
.longg-solutions.ls-detail .ls-products .ls-section-heading { align-items:flex-start; flex-direction:column; gap:12px; text-align:left; margin-bottom:32px; }
.longg-solutions.ls-detail .ls-products .ls-section-heading h2 { max-width:none; }
.longg-solutions.ls-detail .ls-products .ls-section-heading p { max-width:720px; margin-right:0; margin-left:0; }
.longg-solutions.ls-detail .ls-products .ls-section-heading h2,
.longg-solutions.ls-detail .ls-project-evidence .ls-section-heading h2 { max-width:820px; font-size:34px; line-height:1.22; }
.longg-solutions.ls-detail .ls-product-grid { gap:26px 24px; }
.longg-solutions.ls-detail .ls-product-card h3 { font-size:16px; }
.longg-solutions.ls-detail .ls-project-evidence { padding-top:72px; }
.longg-solutions.ls-detail .ls-project-evidence .ls-section-heading { margin-bottom:32px; }
.longg-solutions.ls-detail .ls-evidence-single .ls-evidence-card { grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr); gap:52px; }
.longg-solutions.ls-detail .ls-evidence-copy h3 { font-size:25px; }
.longg-solutions.ls-detail .ls-evidence-summary { margin-top:12px; font-size:16px; line-height:1.68; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial { padding:0; }
.longg-solutions.ls-detail .ls-quote-faq { margin-top:14px; }

/* 08 子页编辑式流程：与规划模块左右镜像，建立稳定而非重复的页面节奏。 */
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial { grid-template-columns:minmax(0,1fr) minmax(0,1fr); margin-top:var(--ls-detail-gap); background:var(--ls-detail-warm); }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial .ls-process-copy { align-self:center; padding:44px 48px; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial header { margin-bottom:24px; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial header h2 { font-size:34px; line-height:1.22; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial header p { max-width:560px; margin-top:16px; font-size:16px; line-height:1.68; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial ol { border-color:var(--ls-detail-line); }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial li { grid-template-columns:40px minmax(0,1fr); gap:16px; padding:15px 0; border-color:var(--ls-detail-line); }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial h3 { margin:0 0 5px; font-size:18px; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial li p { font-size:16px; line-height:1.62; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial .ls-process-step-icon { width:28px; height:28px; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure { display:flex; min-height:600px; align-items:stretch; padding:44px 44px 44px 0; }
.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure img { width:100%; height:100%; border-radius:5px; object-fit:cover; }

/* 09 子页收尾询价：与项目规划模块使用同尺寸小色块作为视觉收尾。 */
.ls-detail .ls-quote { margin-top:var(--ls-detail-gap); padding:56px 36px; background:#f1f1ef; }
.ls-detail .ls-quote h2 { max-width:800px; margin:0 auto; font-size:34px; }
.ls-detail .ls-quote p { margin:18px auto 24px; }

/* 10 子页证据单卡：左右图文，与编辑流程形成节奏。 */
.longg-solutions .ls-evidence-single { grid-template-columns:1fr; }
.longg-solutions .ls-evidence-single .ls-evidence-card { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr); gap:44px; align-items:center; }
.longg-solutions .ls-evidence-single .ls-evidence-image img { aspect-ratio:16/10; }
.longg-solutions .ls-evidence-single .ls-evidence-copy { padding:0; }

/* 11 响应式：先做子页专属 1100/900/700，再做共用 commerce 1000/700。 */
@media(max-width:1100px) {
  .longg-solutions.ls-detail { --ls-detail-gap:60px; }
  .ls-detail .ls-hero,.ls-detail .ls-hero-copy { min-height:570px; }
  .ls-detail .ls-hero-copy { padding:44px 40px; }
  .ls-detail .ls-hero h1 { font-size:34px; }
  .ls-project-plan-copy,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:38px 40px; }
  .ls-project-plan figure { min-height:580px; padding:38px 0 38px 38px; }
  .longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure { min-height:560px; padding:38px 38px 38px 0; }
  .ls-project-plan-copy h2,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial header h2,.ls-detail .ls-quote h2 { font-size:30px; }
  .longg-solutions.ls-detail .ls-products,
  .longg-solutions.ls-detail .ls-project-evidence { padding-top:60px; }
  .longg-solutions.ls-detail .ls-products .ls-section-heading h2,
  .longg-solutions.ls-detail .ls-project-evidence .ls-section-heading h2 { font-size:30px; }
}
@media(max-width:1000px) {
  .longg-solutions .ls-evidence-grid { gap:20px; }
  .longg-solutions .ls-evidence-single .ls-evidence-card { grid-template-columns:1fr; gap:22px; }
  .longg-solutions .ls-evidence-single .ls-evidence-copy { padding:0 4px; }
  .longg-solutions .ls-product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 20px; }
  .longg-solutions .ls-order-guide ol { gap:20px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial { grid-template-columns:1fr; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:36px 40px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial header p { max-width:620px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial figure { min-height:0; aspect-ratio:16/9; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial ol { gap:0; }
}
@media(max-width:900px) {
  .ls-project-plan,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial { grid-template-columns:1fr; }
  .ls-project-plan figure,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure { min-height:0; padding:28px 28px 0; }
  .ls-project-plan figure img,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure img { height:auto; aspect-ratio:16/10; }
  .longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure { order:-1; }
  .longg-solutions.ls-detail .ls-evidence-single .ls-evidence-card { grid-template-columns:1fr; gap:22px; }
  .longg-solutions.ls-detail .ls-evidence-single .ls-evidence-copy { padding:0 4px; }
}
@media(max-width:700px) {
  .longg-solutions.ls-detail { --ls-detail-gap:44px; }
  .ls-detail .ls-hero { grid-template-columns:1fr; min-height:0; }
  .ls-detail .ls-hero-copy { min-height:0; padding:32px 24px; }
  .ls-detail .ls-hero h1 { font-size:28px; }
  .ls-detail .ls-hero-copy > p { margin-top:18px; font-size:16px; }
  .longg-solutions.ls-detail .ls-hero-image { position:static; width:100%; height:auto; aspect-ratio:4/3; }
  .ls-hero-note { right:12px; bottom:12px; }
  .ls-project-plan figure,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure { padding:20px 20px 0; }
  .ls-project-plan figure img,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial figure img { aspect-ratio:4/3; }
  .ls-project-plan-copy,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:28px 24px 30px; }
  .ls-project-plan-copy h2,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial header h2,.ls-detail .ls-quote h2 { font-size:25px; }
  .ls-project-plan-intro,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial header p { margin-top:14px; font-size:16px; }
  .ls-decision-list { margin-top:22px; }
  .ls-decision-list article { padding:16px 0; }
  .ls-decision-list h3,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial h3 { font-size:17px; }
  .ls-decision-list p,.longg-solutions.ls-detail .ls-order-guide.ls-order-guide-editorial li p { font-size:16px; }
  .ls-detail .ls-quote { padding:36px 24px; }

  .longg-solutions.ls-detail .ls-products,
  .longg-solutions.ls-detail .ls-project-evidence { padding-top:44px; }
  .longg-solutions.ls-detail .ls-products .ls-section-heading { margin-bottom:22px; }
  .longg-solutions.ls-detail .ls-products .ls-section-heading h2,
  .longg-solutions.ls-detail .ls-project-evidence .ls-section-heading h2 { font-size:25px; }
  .longg-solutions.ls-detail .ls-products .ls-section-heading p { font-size:16px; }
  .longg-solutions.ls-detail .ls-project-evidence .ls-section-heading { margin-bottom:22px; }
  .longg-solutions.ls-detail .ls-evidence-single .ls-evidence-card { gap:0; }
  .longg-solutions.ls-detail .ls-evidence-single .ls-evidence-copy { padding:18px 2px 0; }
  .longg-solutions .ls-quote-faq-content { grid-template-columns:1fr; gap:24px; padding-top:20px; }
  .longg-solutions .ls-quote-faq-content h3 { font-size:17px; }
  .longg-solutions .ls-quote-faq > summary { font-size:16px; gap:12px; }
  .longg-solutions .ls-products,.longg-solutions .ls-order-guide { padding:40px 0; }
  .longg-solutions .ls-product-grid { gap:24px 16px; }
  .longg-solutions .ls-product-card h3 { font-size:16px; line-height:1.4; margin-bottom:6px; }
  .longg-solutions .ls-order-guide h2 { font-size:24px; }
  .longg-solutions .ls-order-guide ol { grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 20px; }
  .longg-solutions .ls-order-guide li { gap:16px; }
  .longg-solutions .ls-order-guide h3 { font-size:17px; }
  .longg-solutions .ls-order-guide p { font-size:16px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial { margin-top:44px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-copy { padding:28px 24px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial header { margin-bottom:22px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial header p { margin-top:14px; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial figure { aspect-ratio:4/3; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial ol { grid-template-columns:1fr; gap:0; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial li { grid-template-columns:38px minmax(0,1fr); gap:14px; padding:20px 0; }
  .longg-solutions .ls-order-guide.ls-order-guide-editorial .ls-process-step-icon { width:28px; height:28px; }
  .longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content { grid-template-columns: 1fr; gap: 0; }
  .longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content > div { padding: 20px 0; }
  .longg-solutions .ls-quote-faq.ls-faq-enhanced .ls-quote-faq-content h3 { font-size: 16px; }
}
@media(max-width:480px) {
  .ls-detail .ls-hero h1 { font-size:24px; }
}

/* Product category hub. Uses LONGG's Config fonts, panel colors and button proportions. */
.product-hub-page .skip-to-content { position: fixed; z-index: 2000; top: 12px; left: 16px; padding: 10px 16px; border-radius: 4px; background: #111; color: #fff; transform: translateY(-160%); }
.product-hub-page .skip-to-content:focus-visible { transform: translateY(0); }
#main-content.product-hub {
  --ph-ink: #171717;
  --ph-muted: #555650;
  --ph-panel: #f0ede7;
  --ph-panel-alt: #f7f7f5;
  --ph-rule: #d8d5ce;
  max-width: 1440px;
  padding: 40px 40px 72px;
  color: var(--ph-ink);
  font-family: var(--font-body);
  font-size: 16px;
}
.product-hub a { color: inherit; text-decoration: none; }
.product-hub a:focus-visible { outline: 2px solid var(--ph-ink); outline-offset: 5px; }
.product-hub .ph-intro { margin-bottom: 40px; }
.product-hub .ph-intro h1 { max-width: 1020px; margin: 0 auto 20px; font-family: var(--font-title); font-size: 40px; font-weight: 500; line-height: 1.2; text-align: center; text-transform: uppercase; }
.product-hub .ph-intro > p { max-width: 790px; margin: 0 auto; color: var(--ph-muted); font-size: 18px; font-weight: 400; line-height: 1.7; text-align: center; }
.product-hub .ph-jump { display: flex; justify-content: center; flex-wrap: nowrap; gap: 10px; margin: 32px 0 0; padding: 0 0 4px; border: 0; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.product-hub .ph-jump::-webkit-scrollbar { display: none; }
.product-hub .ph-jump a { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; min-height: 54px; padding: 12px 28px; border: 1px solid #e6e6e6; border-radius: 4px; background: #efefef; color: #171717; font-size: 16px; font-weight: 500; line-height: 1.4; text-transform: uppercase; }
.product-hub .ph-jump a.active { border-color: #000; background: #000; color: #fff; }
.product-hub .ph-families { display: grid; gap: 72px; }
.product-hub .ph-category-group { scroll-margin-top: 104px; }
.product-hub .ph-family { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 8px; background: var(--ph-panel); }
.product-hub .ph-category-group:nth-child(even) .ph-family { background: var(--ph-panel-alt); }
.product-hub .ph-family-image { display: block; position: relative; min-width: 0; min-height: 500px; }
.product-hub .ph-family-image img { display: block; position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 0; }
.product-hub .ph-family-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-width: 0; padding: clamp(32px, 4vw, 56px); }
.product-hub .ph-family h2 { margin: 0; font-family: var(--font-title); font-size: 34px; font-weight: 500; line-height: 1.2; text-transform: uppercase; }
.product-hub .ph-family-copy > p { margin: 18px 0 24px; color: var(--ph-muted); font-size: 16px; font-weight: 400; line-height: 1.7; }
.product-hub .ph-subcategories { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 2px; width: 100%; margin: 0 0 28px; padding: 0; list-style: none; }
.product-hub .ph-subcategories li { min-width: 0; margin: 0; padding: 0; }
.product-hub .ph-subcategories a { display: flex; align-items: center; min-height: 44px; padding: 6px 0; font-size: 16px; font-weight: 400; line-height: 1.4; }
.product-hub .ph-subcategories a:hover { color: #66665c; }
.product-hub .ph-latest-products { margin-top: 26px; }
.product-hub .ph-latest-label { margin: 0 0 16px; font-size: 20px; font-weight: 500; line-height: 1.3; letter-spacing: .02em; }
.product-hub .ph-latest-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-hub .ph-latest-grid .product-image-wrapper-modern, .product-hub .ph-latest-grid .product-image-wrapper-modern img { border-radius: 0; }
.product-hub .ph-latest-grid .product-name-modern { font-size: 16px; font-weight: 500; line-height: 1.4; text-align: left; text-transform: uppercase; }
.product-hub .ph-latest-grid .product-card-modern:hover .product-name-modern { text-decoration: none; }
.product-hub .ph-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; max-width: 100%; padding: 15px 28px; border: 0; border-radius: 3px; background: #111; color: #fff; font-size: 16px; font-weight: 500; line-height: 1.5; text-align: center; text-transform: uppercase; }
.product-hub .ph-family-reverse .ph-family-image { grid-column: 2; grid-row: 1; }
.product-hub .ph-family-reverse .ph-family-copy { grid-column: 1; grid-row: 1; }
.product-hub .ph-project { margin-top: 72px; padding: 60px 40px; border-radius: 8px; background: #efefef; text-align: center; }
.product-hub .ph-project h2 { max-width: 740px; margin: 0 auto; font-family: var(--font-title); font-size: 36px; font-weight: 500; line-height: 1.25; text-transform: uppercase; }
.product-hub .ph-project p { max-width: 720px; margin: 20px auto 28px; color: var(--ph-muted); font-size: 18px; font-weight: 400; line-height: 1.7; }
.product-hub .ph-resources { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 28px; margin-top: 20px; }
.product-hub .ph-resources a { display: inline-flex; align-items: center; min-height: 44px; font-size: 16px; line-height: 1.5; text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 1000px) {
  .product-hub .ph-family-copy { padding: 32px; }
  .product-hub .ph-family h2 { font-size: 28px; }
  .product-hub .ph-family-image { min-height: 470px; }
  .product-hub .ph-subcategories { column-gap: 16px; }
}
@media (max-width: 900px) {
  #main-content.product-hub { padding: 32px 24px 48px; }
  .product-hub .ph-intro { margin-bottom: 28px; }
  .product-hub .ph-intro h1 { font-size: 28px; line-height: 1.25; margin-bottom: 16px; }
  .product-hub .ph-intro > p { font-size: 16px; }
  .product-hub .ph-jump { display: flex; margin-top: 24px; padding-bottom: 4px; }
  .product-hub .ph-jump a { min-height: 50px; padding: 10px 20px; }
  .product-hub .ph-families { gap: 48px; }
  .product-hub .ph-category-group { scroll-margin-top: 80px; }
  .product-hub .ph-latest-products { margin-top: 20px; }
  .product-hub .ph-latest-label { margin-bottom: 14px; font-size: 18px; }
  .product-hub .ph-latest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .product-hub .ph-latest-grid .product-info-modern { padding-top: 10px; }
  .product-hub .ph-family { grid-template-columns: 1fr; }
  .product-hub .ph-family-image, .product-hub .ph-family-reverse .ph-family-image { grid-column: 1; grid-row: 1; min-height: 0; aspect-ratio: 7 / 6; }
  .product-hub .ph-family-copy, .product-hub .ph-family-reverse .ph-family-copy { grid-column: 1; grid-row: 2; padding: 28px 24px 32px; }
  .product-hub .ph-family h2 { font-size: 26px; }
  .product-hub .ph-family-copy > p { margin: 16px 0 18px; }
  .product-hub .ph-subcategories { margin-bottom: 24px; }
  .product-hub .ph-button { padding-inline: 20px; }
  .product-hub .ph-project { margin-top: 40px; padding: 36px 24px; }
  .product-hub .ph-project h2 { font-size: 28px; }
  .product-hub .ph-project p { font-size: 16px; margin: 18px auto 24px; }
  .product-hub .ph-resources { gap: 0 20px; margin-top: 16px; }
}

@media (max-width: 760px) {
  .product-hub .ph-jump { justify-content: flex-start; }
  #main-content.product-hub { padding: 80px 20px 48px; }
  .product-hub-page .header-top .logo-image { height: 44px; width: auto; }
  .product-hub-page .mobile-menu-toggle { padding: 0; border: 0; background: transparent; color: #111; }
}

/* Existing expandable product guide restored beneath the new category hub. */
.product-hub .products-cta-section { margin-top: 32px; }
.product-hub .products-cta-section .cta-description a { text-decoration: underline; text-underline-offset: 3px; }

/* Current shared LONGG footer. */
.longg-footer { background: #fff; color: #303030; font-family: var(--font-body); scroll-margin-top: 80px; }
.longg-footer-inner { width: min(1360px, calc(100vw - 80px)); margin: 0 auto; padding: 40px 0 20px; }
.longg-footer-main { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px; padding-bottom: 28px; }
.longg-footer-logo { display: inline-flex; align-items: center; width: 138px; min-height: 44px; }
.longg-footer-logo img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.longg-footer-tagline { margin: 18px 0 12px; color: #555; font-size: 16px; font-weight: 400; line-height: 1.6; }
.longg-footer a { color: inherit; text-decoration: none; }
.longg-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.longg-footer a:focus-visible, .longg-footer button:focus-visible { outline: 2px solid #333; outline-offset: 4px; }
.longg-footer-social { display: flex; flex-wrap: wrap; gap: 4px; margin-left: -10px; }
.longg-footer-social .social-icon { display: flex; width: 40px; height: 44px; align-items: center; justify-content: center; }
.longg-footer-social svg { width: auto; max-width: 24px; height: 18px; fill: currentColor; }
.longg-footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.longg-footer-links h2 { margin: 0 0 12px; font-family: var(--font-body); font-size: 16px; font-weight: 500; line-height: 28px; letter-spacing: .02em; text-transform: uppercase; color: #111; }
.longg-footer-links > a, .longg-footer-link-list > a { display: inline-flex; align-items: center; min-height: 36px; font-size: 16px; line-height: 1.5; }
.longg-footer-link-list { display: flex; flex-direction: column; align-items: flex-start; }
.longg-footer-link-list[hidden] { display: none; }
.longg-footer-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 56px; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; text-align: left; cursor: pointer; }
.longg-footer-toggle::after { content: '+'; font-size: 20px; font-weight: 400; }
.longg-footer-toggle[aria-expanded="true"]::after { content: '−'; }
.longg-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #deded9; padding-top: 16px; font-size: 16px; line-height: 1.5; }
.longg-footer-bottom p { margin: 0; }
.longg-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.longg-footer-bottom nav a { display: inline-flex; align-items: center; min-height: 44px; }
.longg-footer-bottom button { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0; border: 0; background: transparent; color: #303030; font: inherit; cursor: pointer; }
.longg-footer-bottom button:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 980px) {
  .longg-footer-main { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .longg-footer-brand { grid-column: 1 / -1; }
  .longg-footer-bottom { flex-wrap: wrap; gap: 8px 24px; }
}
@media (max-width: 600px) {
  .longg-footer-inner { width: calc(100% - 40px); padding-top: 28px; }
  .longg-footer-main { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .longg-footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .longg-footer-tagline { margin-top: 14px; font-size: 16px; }
  .longg-footer-tagline br { display: none; }
  .longg-footer-links { border-top: 1px solid #e8e8e8; }
  .longg-footer-links h2 { width: 100%; margin: 0; font-size: 16px; }
  .longg-footer-link-list { padding-bottom: 12px; }
  .longg-footer-links > a, .longg-footer-link-list > a { min-height: 44px; }
  .longg-footer-bottom nav { order: -1; width: 100%; gap: 0 18px; }
}

/* ============================================================
   MERGED PAGE-SPECIFIC STYLES (about / 404 / contact / projects)
   Source: new-page-preview/css/*-current.css
   The shared .longg-footer rules already exist in this file.
   ============================================================ */

/* ---- ABOUT PAGE ---- */
/* LONGG About — unified vertical rhythm and integrated company facts */
.about-hero-section {
    padding: 52px 0 40px;
}

.about-hero-title {
    margin: 0 0 18px;
}

.about-hero-desc {
    margin: 0 auto;
    line-height: 1.7;
}

.about-gallery-section {
    margin: 0;
    padding: 0;
}

.about-story-section {
    margin: 40px 0 0;
}

.about-metrics-section {
    margin: 0;
    padding: 50px 68px 0;
}

.about-metrics-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    background: transparent;
    list-style: none;
}

.about-metrics-list li {
    display: flex;
    min-width: 0;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 18px;
    text-align: center;
}

.about-metrics-list strong {
    color: #171717;
    font-family: var(--font-title);
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.about-metrics-list sup {
    position: relative;
    top: -0.25em;
    margin-left: 2px;
    font-size: 0.48em;
    line-height: 0;
}

.about-metrics-list span {
    margin-top: 12px;
    color: #5c5d58;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    text-wrap: balance;
}

.about-story-section > .about-story-content {
    padding: 46px 80px 64px;
}

.about-story-title {
    margin-top: 0;
}

.about-feature-section {
    padding: 64px 0;
}

.about-feature-section .feature-title {
    margin-top: 0;
}

.about-feature-section .feature-desc:last-child {
    margin-bottom: 0;
}

.about-cta-section {
    margin: 0 0 56px;
    padding: 48px 0;
}

.about-cta-section .cta-heading {
    margin-top: 0;
}

.about-cta-section .cta-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .about-hero-section {
        padding: 28px 20px;
    }

    .about-hero-title {
        margin: 0 0 14px;
    }

    .about-story-section {
        margin: 28px 0 0;
    }

    .about-metrics-section {
        padding: 34px 20px 0;
    }

    .about-metrics-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 14px;
    }

    .about-metrics-list li {
        min-height: 102px;
        padding: 10px;
    }

    .about-story-section > .about-story-content {
        padding: 32px 20px 44px;
    }

    .about-feature-section {
        padding: 48px 20px;
    }

    .about-cta-section {
        margin-bottom: 40px;
        padding: 36px 20px;
    }
}

@media (max-width: 420px) {
    .about-metrics-list strong {
        font-size: 32px;
    }
}
/* Public-domain Natural Earth map, styled as a quiet global-service backdrop. */
.about-story-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.about-world-map {
    position: absolute;
    z-index: 0;
    top: 10px;
    left: 50%;
    width: calc(100% - 64px);
    height: 350px;
    object-fit: fill;
    opacity: 0.16;
    transform: translateX(-50%);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
}

.about-metrics-section,
.about-story-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 800px) {
    .about-world-map {
        top: 20px;
        width: 150%;
        height: 300px;
        opacity: 0.12;
    }
}

/* ---- 404 PAGE ---- */
/* LONGG custom 404 page */
.error-page.main-content {
    max-width: 1440px;
    padding: 40px 40px 64px;
}
.error-hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    min-height: 610px;
    overflow: hidden;
    border-radius: 8px;
    background: #efefed;
}
.error-hero-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(48px, 6vw, 88px);
}
.error-code {
    margin: 0 0 14px;
    color: #c9c8c2;
    font-size: clamp(88px, 10vw, 150px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .72;
}
.error-hero h1 {
    margin: 0;
    color: #141414;
    font-family: var(--font-title);
    font-size: clamp(34px, 3.5vw, 54px);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.08;
}
.error-intro {
    max-width: 560px;
    margin: 26px 0 0;
    color: #5f5f5b;
    font-size: 16px;
    line-height: 1.75;
}
.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.error-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid #161616;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .035em;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.error-btn-primary {
    background: #161616;
    color: #fff;
}
.error-btn-primary:hover {
    background: #383834;
    border-color: #383834;
}
.error-btn-secondary {
    background: transparent;
    color: #161616;
}
.error-btn-secondary:hover {
    background: #fff;
}
.error-btn:focus-visible,
.error-paths a:focus-visible {
    outline: 2px solid #161616;
    outline-offset: 4px;
}
.error-visual {
    position: relative;
    min-height: 610px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
}
.error-visual::after {
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(to top, rgba(0,0,0,.48), transparent);
    content: "";
    pointer-events: none;
}
.error-visual img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}
.error-visual figcaption {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 26px;
    left: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .055em;
}
.error-paths {
    display: grid;
    grid-template-columns: 240px 1fr;
    column-gap: 36px;
    row-gap: 10px;
    align-items: start;
    padding: 42px 0 0;
}
.error-paths-label {
    display: flex;
    min-height: 60px;
    align-items: center;
margin: 0;
    color: #656560;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .09em;
}
.error-paths-links {
display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 0;
}
.error-paths a {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #d7d6d1;
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 500;
}
.error-paths a + a {
    margin-left: 24px;
}
.error-paths a span {
    color: #787872;
    transition: transform .2s ease;
}
.error-paths a:hover span {
    transform: translate(2px, -2px);
}
@media (max-width: 1024px) {
    .error-hero { min-height: 520px; }
    .error-hero-copy { padding: 48px 40px; }
    .error-visual { min-height: 520px; }
    .error-paths { grid-template-columns: 1fr; gap: 12px; }
    .error-paths-label,
    .error-paths-links { grid-column: 1; }
    .error-paths-links {
grid-template-columns: repeat(3, 1fr); }
    .error-paths a + a { margin-left: 20px; }
}
@media (max-width: 768px) {
    .error-page.main-content { padding: 76px 20px 48px; }
    .error-hero { grid-template-columns: 1fr; min-height: auto; }
    .error-hero-copy { padding: 44px 28px 40px; }
    .error-code { font-size: 96px; }
    .error-hero h1 { font-size: 34px; }
    .error-actions { width: 100%; }
    .error-btn { flex: 1 1 180px; padding: 0 20px; }
    .error-visual { min-height: 0; aspect-ratio: 4 / 3; }
    .error-visual figcaption { right: 22px; bottom: 20px; left: 22px; font-size: 14px; }
    .error-paths { padding-top: 34px; }
    .error-paths-links {
grid-template-columns: repeat(2, 1fr); }
    .error-paths a + a { margin-left: 16px; }
    .error-paths a:nth-child(odd) { margin-left: 0; }
}
@media (max-width: 480px) {
    .error-page.main-content { padding: 72px 16px 40px; }
    .error-hero-copy { padding: 38px 22px 34px; }
    .error-intro { margin-top: 20px; }
    .error-actions { margin-top: 28px; }
    .error-btn { flex-basis: 100%; }
    .error-paths-links {
grid-template-columns: 1fr; }
    .error-paths a + a { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .error-btn,
    .error-paths a span { transition: none; }
}

/* ---- CONTACT PAGE ---- */
/* LONGG contact page - Belveo-inspired quote layout with image on the left. */
.contact-current-page .skip-to-content { position:fixed; z-index:2000; top:12px; left:16px; padding:10px 16px; border-radius:4px; background:#111; color:#fff; transform:translateY(-160%); }
.contact-current-page .skip-to-content:focus-visible { transform:translateY(0); }
.contact-current-page .mobile-menu-toggle { padding:0; border:0; background:transparent; color:#111; }
#main-content.contact-current { --cc-ink:#171717; --cc-muted:#5c5d58; --cc-panel:#efefed; --cc-rule:#d2d1cc; max-width:1480px; margin:0 auto; padding:44px 36px 76px; color:var(--cc-ink); font-family:var(--font-body); font-size:16px; }
.contact-current a { color:inherit; }
.contact-current a:focus-visible,.contact-current button:focus-visible,.contact-current input:focus-visible,.contact-current textarea:focus-visible { outline:2px solid #111; outline-offset:3px; }
.contact-current .cc-eyebrow { margin:0 0 15px; color:var(--cc-muted); font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.11em; text-transform:uppercase; }
.contact-current .cc-quote-layout { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.06fr); gap:42px; align-items:stretch; padding:40px 42px; border-radius:8px; background:var(--cc-panel); }
.contact-current .cc-quote-image { position:relative; min-width:0; min-height:620px; overflow:hidden; margin:0; border-radius:7px; background:#d5d1c8; }
.contact-current .cc-quote-image img { display:block; width:100%; height:100%; object-fit:cover; object-position:center; }
.contact-current .cc-quote-image::after { position:absolute; inset:auto 0 0; height:26%; background:linear-gradient(transparent,rgba(0,0,0,.55)); content:""; pointer-events:none; }
.contact-current .cc-quote-image figcaption { position:absolute; z-index:1; right:24px; bottom:20px; left:24px; color:#fff; font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.06em; }
.contact-current .cc-form-column { min-width:0; align-self:center; padding:8px 0 8px 12px; }
.contact-current .cc-form-heading { margin-bottom:22px; }
.contact-current .cc-form-heading h1 { margin:0; font-family:var(--font-title); font-size:clamp(32px,3vw,42px); font-weight:500; line-height:1.1; letter-spacing:.005em; text-transform:uppercase; text-wrap:balance; }
.contact-current .cc-form-heading>p:last-child { max-width:670px; margin:14px 0 0; color:var(--cc-muted); font-size:16px; line-height:1.6; }
.contact-current .cc-form { display:grid; gap:14px; }
.contact-current .cc-field-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px 16px; }
.contact-current .cc-form label { display:grid; gap:7px; min-width:0; font-size:16px; font-weight:500; line-height:1.4; }
.contact-current .cc-form input,.contact-current .cc-form textarea { width:100%; min-width:0; border:1px solid #c5c4bf; border-radius:3px; background:#fff; color:#171717; font:400 16px/1.5 var(--font-body); }
.contact-current .cc-form input { min-height:48px; padding:10px 13px; }
.contact-current .cc-form textarea { min-height:108px; padding:12px 13px; resize:vertical; }
.contact-current .cc-form input::placeholder,.contact-current .cc-form textarea::placeholder { color:#777872; opacity:1; }
.contact-current .cc-form input:focus-visible,.contact-current .cc-form textarea:focus-visible { border-color:#171717; outline-offset:1px; }
.contact-current .cc-file-note { margin:-1px 0 0; color:var(--cc-muted); font-size:16px; line-height:1.55; }
.contact-current .cc-file-note a,.contact-current .cc-submit-row a,.contact-current .cc-official-details a { text-decoration:underline; text-underline-offset:4px; }
.contact-current .cf-turnstile { min-height:65px; }
.contact-current .cc-verification-preview { display:flex; align-items:center; width:min(100%,300px); min-height:65px; padding:14px 18px; border:1px solid #cbc9c3; border-radius:3px; background:#fff; color:#62635e; font-size:16px; letter-spacing:.04em; }
.contact-current .cc-submit-row { display:flex; align-items:center; gap:20px; }
.contact-current .cc-submit { display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto; min-height:50px; padding:12px 27px; border:0; border-radius:3px; background:#111; color:#fff; font:500 16px/1.5 var(--font-body); cursor:pointer; }
.contact-current .cc-submit:hover { background:#2b2b2b; }
.contact-current .cc-submit:disabled { opacity:.58; cursor:wait; }
.contact-current .cc-submit-row p { margin:0; color:var(--cc-muted); font-size:16px; line-height:1.5; }
.contact-current .cc-success { margin:0 0 22px; padding:17px 19px; border:1px solid #b9b8b1; border-radius:3px; background:#fff; }
.contact-current .cc-success[hidden],.contact-current .cc-preview-status[hidden] { display:none; }
.contact-current .cc-success h2 { margin:0 0 6px; font-size:18px; font-weight:500; }
.contact-current .cc-success p,.contact-current .cc-preview-status { margin:0; font-size:16px; line-height:1.6; }
.contact-current .cc-preview-status { padding:12px 14px; border:1px solid var(--cc-rule); background:#fff; }
.contact-current .cc-official-details { display:grid; grid-template-columns:.8fr 1fr 1.55fr; max-width:1300px; margin:48px auto 0; padding:28px 0; border-top:1px solid var(--cc-rule); border-bottom:1px solid var(--cc-rule); }
.contact-current .cc-official-details>div { min-width:0; padding:0 32px; border-right:1px solid var(--cc-rule); }
.contact-current .cc-official-details>div:first-child { padding-left:0; }
.contact-current .cc-official-details>div:last-child { padding-right:0; border-right:0; }
.contact-current .cc-official-details h2 { margin:0 0 10px; color:var(--cc-muted); font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.06em; }
.contact-current .cc-official-details a { display:block; width:fit-content; min-height:32px; font-size:16px; font-weight:500; line-height:1.5; overflow-wrap:anywhere; }
.contact-current .cc-official-details address { color:var(--cc-muted); font-size:16px; font-style:normal; line-height:1.65; }
@media(max-width:1050px) {
  #main-content.contact-current { padding:38px 24px 60px; }
  .contact-current .cc-quote-layout { grid-template-columns:1fr; gap:38px; padding:34px; }
  .contact-current .cc-quote-image { min-height:500px; }
  .contact-current .cc-form-column { padding:0 4px 6px; }
  .contact-current .cc-official-details { grid-template-columns:1fr 1fr; row-gap:28px; }
  .contact-current .cc-official-details>div:nth-child(2) { border-right:0; }
  .contact-current .cc-official-details>div:last-child { grid-column:1/-1; padding:26px 0 0; border-top:1px solid var(--cc-rule); }
}
@media(max-width:600px) {
  #main-content.contact-current { padding:80px 20px 48px; }
  .contact-current .cc-quote-layout { gap:30px; padding:18px; border-radius:6px; }
  .contact-current .cc-quote-image { min-height:360px; border-radius:5px; }
  .contact-current .cc-quote-image figcaption { right:16px; bottom:14px; left:16px; }
  .contact-current .cc-form-column { padding:0 4px 10px; }
  .contact-current .cc-form-heading h1 { font-size:30px; line-height:1.15; }
  .contact-current .cc-form-heading>p:last-child { font-size:16px; }
  .contact-current .cc-field-grid { grid-template-columns:1fr; }
  .contact-current .cc-submit-row { align-items:stretch; flex-direction:column; }
  .contact-current .cc-submit { width:100%; }
  .contact-current .cc-official-details { grid-template-columns:1fr; margin-top:38px; padding:0; border-bottom:0; }
  .contact-current .cc-official-details>div,.contact-current .cc-official-details>div:first-child,.contact-current .cc-official-details>div:nth-child(2),.contact-current .cc-official-details>div:last-child { grid-column:auto; padding:21px 0; border-top:1px solid var(--cc-rule); border-right:0; }
}

.contact-current .cc-contact-band { display:grid; grid-template-columns:minmax(230px,.62fr) minmax(0,1.38fr); gap:42px; margin-top:48px; padding:38px 42px; border-radius:8px; background:#e5e2db; color:#171717; }
.contact-current .cc-contact-band-intro { padding-right:36px; border-right:1px solid #c9c5bc; }
.contact-current .cc-contact-band-intro p { margin:0 0 11px; color:#66655f; font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.1em; }
.contact-current .cc-contact-band-intro h2 { margin:0; font-family:var(--font-title); font-size:30px; font-weight:500; line-height:1.2; }
.contact-current .cc-contact-band-intro span { display:block; margin-top:13px; color:#66655f; font-size:16px; line-height:1.55; }
.contact-current .cc-contact-band-grid { display:grid; grid-template-columns:.8fr 1fr 1.45fr; }
.contact-current .cc-contact-band-grid>div { min-width:0; padding:1px 27px; border-right:1px solid #cbc7be; }
.contact-current .cc-contact-band-grid>div:first-child { padding-left:0; }
.contact-current .cc-contact-band-grid>div:last-child { padding-right:0; border-right:0; }
.contact-current .cc-contact-band-grid h3 { margin:0 0 11px; color:#66655f; font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.06em; }
.contact-current .cc-contact-band-grid a { display:block; width:fit-content; min-height:32px; color:#171717; font-size:16px; font-weight:500; line-height:1.5; text-decoration:underline; text-underline-offset:4px; overflow-wrap:anywhere; }
.contact-current .cc-contact-band-grid address { color:#565650; font-size:16px; font-style:normal; line-height:1.65; }
@media(max-width:1050px) {
  .contact-current .cc-contact-band { grid-template-columns:1fr; gap:28px; }
  .contact-current .cc-contact-band-intro { max-width:620px; padding:0 0 26px; border-right:0; border-bottom:1px solid #c9c5bc; }
}
@media(max-width:600px) {
  .contact-current .cc-contact-band { gap:8px; margin-top:32px; padding:30px 24px; border-radius:6px; }
  .contact-current .cc-contact-band-grid { grid-template-columns:1fr; }
  .contact-current .cc-contact-band-grid>div,.contact-current .cc-contact-band-grid>div:first-child,.contact-current .cc-contact-band-grid>div:last-child { padding:20px 0; border-right:0; border-bottom:1px solid #cbc7be; }
  .contact-current .cc-contact-band-grid>div:last-child { border-bottom:0; }
}

.contact-current .cc-direct-cta { margin-top:48px; padding-top:38px; border-top:1px solid var(--cc-rule); }
.contact-current .cc-direct-main { display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:48px; }
.contact-current .cc-direct-copy h2 { margin:0; font-family:var(--font-title); font-size:32px; font-weight:500; line-height:1.2; text-transform:uppercase; text-wrap:balance; }
.contact-current .cc-direct-copy p { margin:12px 0 0; color:var(--cc-muted); font-size:16px; line-height:1.65; }
.contact-current .cc-direct-actions { display:flex; align-items:center; gap:12px; }
.contact-current .cc-direct-actions a { display:inline-flex; align-items:center; justify-content:center; min-height:54px; padding:13px 26px; border-radius:3px; font-size:16px; font-weight:500; line-height:1.5; text-decoration:none; }
.contact-current .cc-direct-primary { border:1px solid #111; background:#111; color:#fff; }
.contact-current .cc-direct-primary:hover { background:#2b2b2b; }
.contact-current .cc-direct-secondary { border:1px solid #aaa8a2; background:#fff; color:#171717; }
.contact-current .cc-direct-secondary:hover { border-color:#171717; }
.contact-current .cc-direct-location { display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:26px; margin-top:34px; padding-top:22px; border-top:1px solid var(--cc-rule); }
.contact-current .cc-direct-location strong { font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.06em; }
.contact-current .cc-direct-location address { color:var(--cc-muted); font-size:16px; font-style:normal; line-height:1.6; }
.contact-current .cc-direct-location>a { min-height:32px; font-size:16px; font-weight:500; line-height:1.5; text-decoration:underline; text-underline-offset:4px; }
@media(max-width:820px) {
  .contact-current .cc-direct-main { grid-template-columns:1fr; gap:24px; }
  .contact-current .cc-direct-actions { justify-content:flex-start; }
  .contact-current .cc-direct-location { grid-template-columns:1fr; gap:8px; }
}
@media(max-width:600px) {
  .contact-current .cc-direct-cta { margin-top:34px; padding-top:30px; }
  .contact-current .cc-direct-copy h2 { font-size:26px; }
  .contact-current .cc-direct-actions { align-items:stretch; flex-direction:column; }
  .contact-current .cc-direct-actions a { width:100%; }
  .contact-current .cc-direct-location { margin-top:28px; padding-top:20px; }
}
/* V16 direct contact: prominent methods, quiet business details, no ornamental rules. */
.contact-current .cc-contact-options { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); gap:56px; align-items:stretch; margin-top:48px; }
.contact-current .cc-contact-intro { display:flex; flex-direction:column; min-width:0; padding:26px 0 22px; }
.contact-current .cc-contact-label { margin:0 0 12px; color:var(--cc-muted); font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.1em; }
.contact-current .cc-contact-intro h2 { margin:0; font-family:var(--font-title); font-size:32px; font-weight:500; line-height:1.15; text-transform:uppercase; }
.contact-current .cc-contact-intro>p:not(.cc-contact-label) { max-width:420px; margin:14px 0 0; color:var(--cc-muted); font-size:16px; line-height:1.65; }
.contact-current .cc-contact-address { margin-top:auto; padding-top:30px; }
.contact-current .cc-contact-address strong { display:block; margin-bottom:9px; color:var(--cc-muted); font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.06em; }
.contact-current .cc-contact-address address { max-width:480px; color:var(--cc-muted); font-size:16px; font-style:normal; line-height:1.6; }
.contact-current .cc-contact-address a { display:inline-flex; align-items:center; min-height:38px; margin-top:8px; font-size:16px; font-weight:500; line-height:1.5; text-decoration:underline; text-underline-offset:4px; }
.contact-current .cc-contact-methods { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.contact-current .cc-contact-method { display:flex; flex-direction:column; min-width:0; min-height:252px; padding:30px; border-radius:7px; background:var(--cc-panel); color:var(--cc-ink); text-decoration:none; transition:background-color .2s ease,transform .2s ease; }
.contact-current .cc-contact-method:hover { background:#e5e4df; transform:translateY(-2px); }
.contact-current .cc-contact-method-label { color:var(--cc-muted); font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.1em; }
.contact-current .cc-contact-method strong { margin-top:24px; font-family:var(--font-title); font-size:clamp(22px,2vw,28px); font-weight:500; line-height:1.2; overflow-wrap:anywhere; }
.contact-current .cc-contact-method-note { max-width:330px; margin-top:13px; color:var(--cc-muted); font-size:16px; line-height:1.6; }
.contact-current .cc-contact-method-action { display:inline-flex; align-items:center; width:fit-content; min-height:34px; margin-top:auto; padding-top:24px; font-size:16px; font-weight:500; line-height:1.4; text-decoration:underline; text-underline-offset:5px; }
@media(max-width:920px) {
  .contact-current .cc-contact-options { grid-template-columns:1fr; gap:30px; }
  .contact-current .cc-contact-intro { padding-bottom:0; }
  .contact-current .cc-contact-address { margin-top:26px; padding-top:0; }
}
@media(max-width:600px) {
  .contact-current .cc-contact-options { gap:24px; margin-top:34px; }
  .contact-current .cc-contact-intro { padding:10px 2px 0; }
  .contact-current .cc-contact-intro h2 { font-size:27px; }
  .contact-current .cc-contact-methods { grid-template-columns:1fr; }
  .contact-current .cc-contact-method { min-height:220px; padding:26px 24px; border-radius:6px; }
}
@media(prefers-reduced-motion:reduce) {
  .contact-current .cc-contact-method { transition:none; }
  .contact-current .cc-contact-method:hover { transform:none; }
}
/* V17 refined V15 contact strip: visible actions without heavy cards or rules. */
.contact-current .cc-direct-refined { margin-top:48px; padding:0; border-top:0; }
.contact-current .cc-direct-refined .cc-direct-main { gap:42px; padding:10px 0 28px; }
.contact-current .cc-direct-refined .cc-direct-copy { max-width:650px; }
.contact-current .cc-direct-refined .cc-direct-copy h2 { font-size:32px; }
.contact-current .cc-direct-refined .cc-direct-actions { flex:0 0 auto; gap:10px; }
.contact-current .cc-direct-refined .cc-direct-actions a { align-items:flex-start; flex-direction:column; min-width:220px; min-height:74px; padding:12px 18px; border-radius:4px; }
.contact-current .cc-direct-refined .cc-direct-actions span { font-size:16px; font-weight:500; line-height:1.35; }
.contact-current .cc-direct-refined .cc-direct-actions strong { margin-top:2px; font-size:16px; font-weight:500; line-height:1.4; white-space:nowrap; }
.contact-current .cc-direct-refined .cc-direct-primary strong { color:#d7d7d3; }
.contact-current .cc-direct-refined .cc-direct-secondary { border-color:#c8c7c2; background:#f3f3f1; }
.contact-current .cc-direct-refined .cc-direct-secondary strong { color:var(--cc-muted); }
.contact-current .cc-direct-refined .cc-direct-location { grid-template-columns:auto minmax(0,1fr) auto; gap:28px; margin-top:0; padding:22px 26px; border-top:0; border-radius:6px; background:#efefed; }
.contact-current .cc-direct-refined .cc-direct-location strong { white-space:nowrap; }
.contact-current .cc-direct-refined .cc-direct-location>a { font-weight:600; }
@media(max-width:980px) {
  .contact-current .cc-direct-refined .cc-direct-main { grid-template-columns:1fr; gap:22px; }
  .contact-current .cc-direct-refined .cc-direct-actions { width:100%; }
  .contact-current .cc-direct-refined .cc-direct-actions a { flex:1 1 0; }
}
@media(max-width:760px) {
  .contact-current .cc-direct-refined .cc-direct-location { grid-template-columns:1fr; gap:7px; }
}
@media(max-width:600px) {
  .contact-current .cc-direct-refined { margin-top:34px; padding-top:0; }
  .contact-current .cc-direct-refined .cc-direct-main { padding:4px 0 22px; }
  .contact-current .cc-direct-refined .cc-direct-copy h2 { font-size:27px; }
  .contact-current .cc-direct-refined .cc-direct-actions { flex-direction:column; }
  .contact-current .cc-direct-refined .cc-direct-actions a { width:100%; min-height:70px; }
  .contact-current .cc-direct-refined .cc-direct-location { margin-top:0; padding:22px; }
}
/* V19 contact spacing and showroom visit action. */
.contact-current .cc-direct-visit { margin-top:40px; padding-top:0; border-top:0; }
.contact-current .cc-direct-visit .cc-direct-main { padding:2px 0 28px; }
.contact-current .cc-direct-visit .cc-direct-location { grid-template-columns:auto minmax(0,1fr) auto; gap:26px; margin-top:0; padding-top:24px; }
.contact-current .cc-direct-location-actions { display:flex; align-items:center; justify-content:flex-end; gap:14px; }
.contact-current .cc-direct-location-actions a { display:inline-flex; align-items:center; justify-content:center; min-height:46px; font-size:16px; font-weight:500; line-height:1.4; white-space:nowrap; }
.contact-current .cc-direct-phone { text-decoration:underline; text-underline-offset:4px; }
.contact-current .cc-showroom-visit { padding:10px 16px; border:1px solid #aaa8a2; border-radius:3px; background:#fff; text-decoration:none; }
.contact-current .cc-showroom-visit:hover { border-color:#171717; background:#f5f5f3; }
@media(max-width:980px) {
  .contact-current .cc-direct-visit .cc-direct-location { grid-template-columns:1fr; gap:8px; }
  .contact-current .cc-direct-location-actions { justify-content:flex-start; margin-top:8px; }
}
@media(max-width:600px) {
  .contact-current .cc-direct-visit { margin-top:32px; padding-top:0; }
  .contact-current .cc-direct-visit .cc-direct-main { padding-bottom:22px; }
  .contact-current .cc-direct-visit .cc-direct-location { margin-top:0; padding-top:20px; }
  .contact-current .cc-direct-location-actions { align-items:stretch; flex-direction:column; }
  .contact-current .cc-direct-location-actions a { width:100%; }
}
/* V20 showroom visit uses the same typographic language as the telephone link. */
.contact-current .cc-direct-location-actions { align-items:baseline; gap:26px; }
.contact-current .cc-direct-location-actions a { justify-content:flex-start; min-height:32px; }
.contact-current .cc-direct-location-actions .cc-showroom-visit { min-height:32px; padding:0; border:0; border-radius:0; background:transparent; text-decoration:underline; text-underline-offset:4px; }
.contact-current .cc-direct-location-actions .cc-showroom-visit:hover { border:0; background:transparent; text-decoration-thickness:2px; }
@media(max-width:600px) {
  .contact-current .cc-direct-location-actions { gap:8px; }
  .contact-current .cc-direct-location-actions a { width:fit-content; }
}
/* V21 validation fix presentation and legacy-inspired success state. */
.contact-current .field-error-message { display:block; margin-top:0; color:#c94f4f; font-size:16px; font-weight:400; line-height:1.4; }
.contact-current .field-error { border-color:#c94f4f !important; }
.contact-current .cc-form-column.is-success { display:flex; align-self:stretch; align-items:center; padding:24px 0 24px 12px; }
.contact-current .cc-form-column.is-success .cc-form-heading { display:none; }
.contact-current .cc-form-column.is-success .cc-success { display:block; width:100%; min-height:430px; margin:0; padding:68px 28px; border:0; border-radius:0; background:transparent; }
.contact-current .cc-success-check { display:flex; width:72px; height:72px; align-items:center; justify-content:center; border-radius:50%; background:#63c900; color:#fff; font-family:Arial,sans-serif; font-size:42px; font-weight:400; line-height:1; }
.contact-current .cc-form-column.is-success .cc-success h2 { margin:18px 0 10px; font-family:var(--font-title); font-size:32px; font-weight:500; line-height:1.2; }
.contact-current .cc-form-column.is-success .cc-success p { max-width:560px; margin:0; color:var(--cc-muted); font-size:18px; line-height:1.65; }
@media(max-width:600px) {
  .contact-current .cc-form-column.is-success { padding:6px 4px 18px; }
  .contact-current .cc-form-column.is-success .cc-success { min-height:360px; padding:54px 16px; }
  .contact-current .cc-success-check { width:64px; height:64px; font-size:38px; }
  .contact-current .cc-form-column.is-success .cc-success h2 { font-size:28px; }
  .contact-current .cc-form-column.is-success .cc-success p { font-size:16px; }
}

/* ---- PROJECTS PAGE ---- */
/* LONGG projects hub — editorial project archive. */
.projects-current-page .skip-to-content { position: fixed; z-index: 2000; top: 12px; left: 16px; padding: 10px 16px; border-radius: 3px; background: #111; color: #fff; transform: translateY(-160%); }
.projects-current-page .skip-to-content:focus-visible { transform: translateY(0); }
.projects-current-page .mobile-menu-toggle { padding: 0; border: 0; background: transparent; color: #111; }
#main-content.projects-current { --pc-ink:#171717; --pc-muted:#585954; --pc-warm:#f0ede7; --pc-soft:#f7f7f5; --pc-rule:#d8d5ce; max-width:1440px; margin:0 auto; padding:48px 40px 80px; color:var(--pc-ink); font-family:var(--font-body); font-size:16px; }
.projects-current a { color:inherit; }
.projects-current a:focus-visible,.projects-current button:focus-visible { outline:2px solid #111; outline-offset:4px; }
.projects-current .pc-intro { max-width:980px; margin:0 auto; text-align:center; }
.projects-current .pc-intro h1 { max-width:900px; margin:0 auto; font-family:var(--font-title); font-size:clamp(34px,4vw,48px); font-weight:500; line-height:1.16; letter-spacing:.01em; text-wrap:balance; text-transform:uppercase; }
.projects-current .pc-intro>p:last-child { max-width:820px; margin:22px auto 0; color:var(--pc-muted); font-size:18px; font-weight:400; line-height:1.7; text-wrap:pretty; }
.projects-current .pc-index { margin-top:48px; }
.projects-current .pc-project-filter { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:0 0 42px; padding:0; overflow:visible; }
.projects-current .pc-project-filter .category-option { display:inline-flex; align-items:center; justify-content:center; min-height:54px; padding:13px 26px; border:1px solid #e0e0e0; border-radius:4px; background:#efefef; color:#111; font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.02em; text-decoration:none; text-transform:uppercase; white-space:nowrap; transition:none; }
.projects-current .pc-project-filter .category-option.active { border-color:#000; background:#000; color:#fff; }
.projects-current .pc-project-filter .category-option:hover { border-color:#111; }
.projects-current .pc-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:46px 24px; }
.projects-current .pc-card { min-width:0; }
.projects-current .pc-card-image { display:block; position:relative; aspect-ratio:4/3; overflow:hidden; border-radius:8px; background:#ebe9e4; }
.projects-current .pc-card-image img { display:block; width:100%; height:100%; object-fit:cover; }
.projects-current .pc-card-image:hover img { opacity:.92; }
.projects-current .pc-card-copy { padding-top:17px; }
.projects-current .pc-card-location { margin:0 0 7px; color:var(--pc-muted); font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.04em; text-transform:uppercase; }
.projects-current .pc-card h2 { margin:0; font-family:var(--font-title); font-size:22px; font-weight:500; line-height:1.3; text-transform:uppercase; }
.projects-current .pc-card h2 a { text-decoration:none; }
.projects-current .pc-card h2 a:hover { text-decoration:underline; text-underline-offset:5px; }
.projects-current .pc-card-summary { margin:12px 0 0; color:var(--pc-muted); font-size:16px; line-height:1.65; }
.projects-current .pc-card-link { display:inline-block; min-height:34px; margin-top:13px; font-size:16px; font-weight:500; line-height:1.5; text-decoration:underline; text-underline-offset:4px; }

.projects-current .apple-pagination { display:flex; align-items:center; justify-content:center; gap:20px; margin-top:50px; padding:24px 0; }
.projects-current .apple-pg-arrow { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; color:#1d1d1f; text-decoration:none; transition:background-color .2s ease,opacity .2s ease; }
.projects-current .apple-pg-arrow:hover { background-color:#f5f5f7; }
.projects-current .apple-pg-disabled { opacity:.25; pointer-events:none; }
.projects-current .apple-pg-current { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:38px; padding:0 10px; border:1.5px solid #d2d2d7; border-radius:8px; color:#1d1d1f; font-size:16px; font-weight:600; }
.projects-current .apple-pg-total { color:#86868b; font-size:15px; letter-spacing:.3px; }
.projects-current .pc-home-quote { margin-top:72px; }
.projects-current .pc-home-quote .home-quote-panel { overflow:hidden; border-radius:8px; background:#efefef; }
.projects-current .pc-home-quote .home-quote-card { display:flex; flex-direction:column; min-height:0; padding:60px 40px; background:#efefef; }
.projects-current .pc-home-quote .home-quote-intro { display:flex; flex-direction:column; align-items:center; padding:0; text-align:center; }
.projects-current .pc-home-quote .home-quote-intro h2 { max-width:620px; margin:0 0 8px; color:#000; font-family:var(--font-title); font-size:40px; font-weight:500; line-height:1.6; letter-spacing:.5px; text-transform:uppercase; text-wrap:initial; }
.projects-current .pc-home-quote .home-quote-description { max-width:620px; margin:0 auto; color:#606060; font-size:16px; font-weight:400; line-height:1.5; text-wrap:initial; }
.projects-current .pc-home-quote .home-quote-actions { display:flex; flex-direction:column; align-items:center; margin-top:14px; text-align:center; }
.projects-current .pc-home-quote .home-quote-faq-toggle { align-self:center; margin:0 0 38px; padding:0; border:0; border-bottom:1px solid currentColor; background:transparent; color:#1a1a1a; font:400 16px/1.6 var(--font-body); cursor:pointer; }
.projects-current .pc-home-quote .home-quote-faq-toggle[hidden],.projects-current .pc-home-quote .home-quote-faq-full>summary[hidden],.projects-current .pc-home-quote .home-quote-faq-close[hidden] { display:none; }
.projects-current .pc-home-quote .home-quote-faq-toggle:focus-visible,.projects-current .pc-home-quote .home-quote-faq-close:focus-visible { outline:2px solid #555; outline-offset:4px; }
.projects-current .pc-home-quote .home-quote-link { display:flex; align-items:center; justify-content:center; min-width:0; min-height:0; padding:10px 22px; border:0; border-radius:4px; background:#fff; color:#000; font-size:16px; font-weight:500; line-height:1.4; letter-spacing:.5px; text-decoration:none; text-transform:uppercase; transition:none; }
.projects-current .pc-home-quote .home-quote-link:hover { background:#fff; color:#000; }
.projects-current .pc-home-quote .home-quote-faq-full { margin:0; border:0; }
.projects-current .pc-home-quote .home-quote-faq-full>summary { margin:0 40px; padding:12px 0; font-size:16px; cursor:pointer; }
.projects-current .pc-home-quote .home-quote-faq-content { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 48px; width:100%; padding:0 40px 40px; text-align:left; }
.projects-current .pc-home-quote .home-quote-faq-item { padding:22px 0 24px; border-bottom:1px solid #d7d7d1; }
.projects-current .pc-home-quote .home-quote-faq-item h3 { margin:0; color:#171717; font-size:18px; font-weight:500; line-height:1.4; }
.projects-current .pc-home-quote .home-quote-faq-item p { margin:10px 0 0; color:#545450; font-size:16px; font-weight:400; line-height:1.7; }
.projects-current .pc-home-quote .home-quote-faq-close { display:inline-flex; grid-column:1/-1; align-items:center; justify-self:center; margin-top:18px; padding:10px 0; border:0; border-bottom:1px solid currentColor; background:transparent; color:#454d42; font:400 16px/1.5 var(--font-body); cursor:pointer; }
.projects-current .pc-home-quote .home-quote-faq-close:hover { border-bottom-color:#111; }
@media(max-width:1050px){
  .projects-current .pc-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:850px){
  #main-content.projects-current{padding:34px 24px 64px}
  .projects-current .pc-index{margin-top:42px}
  .projects-current .pc-project-filter{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px;scrollbar-width:none}
  .projects-current .pc-project-filter::-webkit-scrollbar{display:none}
  .projects-current .pc-project-filter .category-option{flex:0 0 auto}
  .projects-current .pc-home-quote .home-quote-card{padding:36px 28px}
  .projects-current .pc-home-quote .home-quote-intro h2{font-size:32px}
  .projects-current .pc-home-quote .home-quote-faq-content{padding:0 28px 32px}
}
@media(max-width:600px){
  #main-content.projects-current{padding:80px 20px 48px}
  .projects-current .pc-intro h1{font-size:28px;line-height:1.22}
  .projects-current .pc-intro>p:last-child{margin-top:18px;font-size:16px}
  .projects-current .pc-index{margin-top:36px}
  .projects-current .pc-project-filter{margin-bottom:30px}
  .projects-current .pc-grid{grid-template-columns:1fr;gap:36px}
  .projects-current .pc-card h2{font-size:21px}
  .projects-current .pc-home-quote{margin-top:48px}
  .projects-current .pc-home-quote .home-quote-card{padding:32px 20px}
  .projects-current .pc-home-quote .home-quote-intro h2{margin-bottom:16px;font-size:24px;line-height:1.3}
  .projects-current .pc-home-quote .home-quote-actions{margin-top:18px}
  .projects-current .pc-home-quote .home-quote-faq-toggle{margin-bottom:28px}
  .projects-current .pc-home-quote .home-quote-faq-content{grid-template-columns:1fr;gap:0;padding:0 20px 32px}
  .projects-current .pc-home-quote .home-quote-faq-item{padding:20px 0}
  .projects-current .pc-home-quote .home-quote-faq-item h3{font-size:16px}
}
