@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500;600&family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&family=Noto+Sans+TC:wght@400;500;700&display=swap");

/* ============================================
   SUNNYWARD LUXURY DESIGN SYSTEM v2.0
   ============================================ */

:root {
  --cream:        #F8F5F0;
  --cream-deep:   #EDE8E0;
  --stone:        #DDD6CC;
  --espresso:     #1E1914;
  --bark:         #3D3228;
  --driftwood:    #6B5D52;
  --copper:       #A87554;
  --copper-light: #C49A72;
  --copper-glow:  rgba(168,117,84,0.12);
  --white:        #FFFFFF;
  --black:        #0D0B09;
  --bg-primary:   #F8F5F0;
  --bg-secondary: #EDE8E0;
  --bg-invert:    #1E1914;
  --text-primary: #1E1914;
  --text-secondary: #6B5D52;
  --text-invert:  #F8F5F0;
  --accent:       #A87554;
  --accent-light: #C49A72;
  --border:       rgba(61,50,40,0.10);
  --border-strong:rgba(61,50,40,0.22);
  --shadow-xs: 0 2px 8px rgba(30,25,20,0.04);
  --shadow-sm: 0 6px 20px rgba(30,25,20,0.06);
  --shadow-md: 0 16px 48px rgba(30,25,20,0.09);
  --shadow-lg: 0 32px 80px rgba(30,25,20,0.13);
  --shadow-xl: 0 60px 120px rgba(30,25,20,0.18);
  --font-display: "DM Serif Display", serif;
  --font-serif:   "Cormorant Garamond", serif;
  --font-sans:    "Inter", "Noto Sans TC", system-ui;
  --ease-out:   cubic-bezier(0.16,1,0.3,1);
  --ease-inout: cubic-bezier(0.76,0,0.24,1);
  --t-fast:  0.25s cubic-bezier(0.16,1,0.3,1);
  --t-base:  0.5s cubic-bezier(0.16,1,0.3,1);
  --t-slow:  0.85s cubic-bezier(0.16,1,0.3,1);
  --max-w:   1320px;
  --nav-h:   76px;
  --gutter:  clamp(1.25rem,4vw,2.5rem);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:var(--font-sans);background:var(--bg-primary);color:var(--text-primary);overflow-x:hidden;opacity:0;transition:opacity 0.6s ease}
body.page-ready{opacity:1}

h1,h2,h3,h4{font-family:var(--font-serif);font-weight:400;line-height:1.08;color:var(--text-primary);letter-spacing:-0.015em}
.display-title{font-family:var(--font-display);font-size:clamp(3.5rem,8vw,8rem);line-height:0.95;letter-spacing:-0.03em}
h1{font-size:clamp(2.6rem,5.5vw,4.5rem)}
h2{font-size:clamp(2rem,3.8vw,3.2rem)}
h3{font-size:clamp(1.5rem,2.4vw,2rem)}
h4{font-size:1.25rem}
p{font-size:1.05rem;line-height:1.72;color:var(--text-secondary);font-weight:300}
.eyebrow,.section-subtitle{font-family:var(--font-sans);font-size:0.72rem;font-weight:500;text-transform:uppercase;letter-spacing:0.2em;color:var(--accent);display:block;margin-bottom:1.2rem}

.container{max-width:var(--max-w);margin:0 auto;padding:0 var(--gutter)}
.section{padding:clamp(5rem,10vw,9rem) 0}
.section--dark{background:var(--bg-invert);color:var(--text-invert)}
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4{color:var(--cream)}
.section--dark p,.section--dark .eyebrow{color:var(--stone)}
.section--tint{background:var(--bg-secondary)}

/* NAV */
#site-header{position:fixed;top:0;left:0;width:100%;height:var(--nav-h);z-index:900;display:flex;align-items:center}
#site-header::after{content:"";position:absolute;inset:0;background:rgba(248,245,240,0.9);backdrop-filter:blur(18px) saturate(180%);-webkit-backdrop-filter:blur(18px) saturate(180%);border-bottom:1px solid var(--border);z-index:-1;transition:opacity var(--t-base)}
#site-header.nav-scrolled{height:64px;box-shadow:var(--shadow-sm)}
#site-header.nav-transparent::after{opacity:0}
.nav-container{position:relative;width:100%;max-width:var(--max-w);margin:0 auto;padding:0 var(--gutter);display:flex;align-items:center;justify-content:space-between;gap:2rem}
.logo{font-family:var(--font-display);font-size:1.55rem;letter-spacing:0.06em;text-decoration:none;color:var(--text-primary);display:flex;align-items:center;gap:0.1em;flex-shrink:0}
.logo span{color:var(--copper)}
.nav-menu{position:absolute;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:2.8rem;list-style:none;white-space:nowrap}
.nav-link{text-decoration:none;color:var(--text-primary);font-size:0.82rem;font-weight:400;letter-spacing:0.08em;text-transform:uppercase;position:relative;padding-bottom:3px;transition:color var(--t-fast)}
.nav-link::before{content:"";position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--accent);transition:width var(--t-base)}
.nav-link:hover::before,.nav-link.active::before{width:100%}
.nav-link:hover,.nav-link.active{color:var(--accent)}
.nav-actions{display:flex;align-items:center;gap:1.2rem;flex-shrink:0}
.lang-dropdown{position:relative}
.lang-current{display:flex;align-items:center;gap:0.4rem;font:600 0.78rem var(--font-sans);color:var(--text-primary);letter-spacing:0.08em;text-transform:uppercase;padding:0.45rem 0.9rem;border:1px solid var(--border-strong);background:var(--white);cursor:pointer;transition:all var(--t-fast)}
.lang-current:hover{border-color:var(--accent);color:var(--accent);background:var(--cream-light)}
.lang-current:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.lang-list{position:absolute;top:calc(100% + 8px);right:0;background:var(--white);border:1px solid var(--border);list-style:none;min-width:130px;box-shadow:var(--shadow-md);opacity:0;visibility:hidden;transform:translateY(-6px);transition:all var(--t-base);z-index:900}
.lang-dropdown:hover .lang-list,
.lang-dropdown.open .lang-list{opacity:1;visibility:visible;transform:translateY(0)}
.lang-item a{display:block;padding:0.65rem 1.1rem;text-decoration:none;color:var(--text-secondary);font-size:0.82rem;letter-spacing:0.04em;transition:all var(--t-fast)}
.lang-item a:hover,.lang-item a.active{color:var(--accent);background:var(--cream-deep);padding-left:1.4rem}

/* Transparent Header Styling Overrides (Visiblity on Dark Hero Backgrounds) */
#site-header.nav-transparent .logo {
  color: var(--cream) !important;
}
#site-header.nav-transparent .logo span {
  color: var(--copper-light) !important;
}
#site-header.nav-transparent .nav-link {
  color: rgba(248, 245, 240, 0.75) !important;
}
#site-header.nav-transparent .nav-link:hover,
#site-header.nav-transparent .nav-link.active {
  color: var(--cream) !important;
}
#site-header.nav-transparent .lang-current {
  color: rgba(248, 245, 240, 0.9) !important;
  border-color: rgba(248, 245, 240, 0.35) !important;
  background: rgba(0, 0, 0, 0.15) !important;
}
#site-header.nav-transparent .lang-current:hover {
  color: var(--cream) !important;
  border-color: var(--cream) !important;
  background: rgba(0, 0, 0, 0.4) !important;
}
#site-header.nav-transparent .mobile-nav-toggle span {
  background: var(--cream) !important;
}
.mobile-nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;z-index:1100}
.mobile-nav-toggle span{display:block;width:24px;height:1.5px;background:var(--text-primary);transition:all var(--t-base);transform-origin:center}
.mobile-nav-toggle.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.mobile-nav-toggle.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.mobile-nav-toggle.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.mobile-drawer{display:none;position:fixed;inset:0;z-index:850;background:var(--cream);flex-direction:column;justify-content:center;padding:3rem var(--gutter);overflow-y:auto;transform:translateX(100%);transition:transform var(--t-slow)}
.mobile-drawer.open{transform:translateX(0)}
.mobile-drawer .nav-link{font-family:var(--font-serif);font-size:clamp(2rem,5vw,2.8rem);letter-spacing:-0.01em;text-transform:none;color:var(--text-primary);display:block;padding:0.6rem 0;border-bottom:1px solid var(--border)}
.mobile-language-switch{margin-top:2rem;padding-top:1rem;border-top:1px solid var(--border)}
.mobile-language-switch>span{display:block;margin-bottom:.75rem;color:var(--text-secondary);font-size:.7rem;letter-spacing:.12em;text-transform:uppercase}
.mobile-language-switch>div{display:flex;flex-wrap:wrap;gap:.65rem}
.mobile-language-switch a{padding:.55rem .75rem;border:1px solid var(--border-strong);color:var(--text-secondary);font-size:.8rem;text-decoration:none}
.mobile-language-switch a:hover,.mobile-language-switch a.active{border-color:var(--accent);color:var(--accent);background:var(--cream-deep)}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;font-family:var(--font-sans);font-size:0.82rem;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;padding:0.9rem 2rem;border:1px solid transparent;cursor:pointer;transition:all var(--t-base);white-space:nowrap;border-radius:0}
.btn-primary{background:var(--accent);color:var(--white);border-color:var(--accent)}
.btn-primary:hover{background:var(--espresso);border-color:var(--espresso)}
.btn-secondary{background:transparent;color:var(--text-primary);border-color:var(--border-strong)}
.btn-secondary:hover{background:var(--text-primary);border-color:var(--text-primary);color:var(--cream)}
.btn-ghost{background:transparent;color:var(--cream);border-color:rgba(248,245,240,0.3)}
.btn-ghost:hover{background:var(--accent);border-color:var(--accent);color:var(--white)}
.btn-arrow{display:inline-flex;align-items:center;gap:0.6rem;font-size:0.82rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;text-decoration:none;color:var(--accent);border:none;background:none;cursor:pointer;padding:0;transition:gap var(--t-base),color var(--t-fast)}
.btn-arrow:hover{gap:1rem}
.btn-arrow::after{content:"→";font-size:1rem;transition:transform var(--t-base)}
.btn-arrow:hover::after{transform:translateX(4px)}
.magnetic-wrap{display:inline-block;position:relative}

/* HERO */
.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;background:var(--espresso)}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{width:100%;height:100%;object-fit:cover;filter:brightness(0.5) saturate(0.85);transform:scale(1.05);animation:heroZoom 14s cubic-bezier(0.76,0,0.24,1) forwards}
.hero__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.52) saturate(.86);z-index:1}
@media (max-width:767px),(prefers-reduced-motion:reduce){.hero__video{display:none}}
@keyframes heroZoom{to{transform:scale(1.0)}}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(14,11,9,0.94) 0%,rgba(14,11,9,0.45) 45%,rgba(14,11,9,0.12) 100%);z-index:1}
.hero__content{position:relative;z-index:2;width:100%;padding:calc(var(--nav-h) + 2rem) var(--gutter) clamp(3rem,7vw,6rem);max-width:var(--max-w);margin:0 auto}
.hero__label{display:inline-flex;align-items:center;gap:0.8rem;margin-bottom:2rem;opacity:0;animation:fadeUp 0.8s 0.3s cubic-bezier(0.16,1,0.3,1) forwards}
.hero__label-line{width:40px;height:1px;background:var(--copper-light)}
.hero__label-text{font-size:0.72rem;font-weight:500;letter-spacing:0.2em;text-transform:uppercase;color:var(--copper-light)}
.hero__title{font-family:var(--font-display);font-size:clamp(3rem,8.5vw,8.5rem);line-height:0.92;letter-spacing:-0.025em;color:var(--cream);margin-bottom:3rem;max-width:16ch;opacity:0;animation:fadeUp 1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards}
.hero__title em{font-style:italic;color:var(--copper-light)}
.hero__bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap;width:100%}
.hero__desc-group{max-width:580px;display:flex;flex-direction:column;gap:2rem;flex-grow:1}
.hero__desc{font-size:1.05rem;line-height:1.7;color:rgba(232,225,216,0.65);font-weight:300;max-width:44ch;opacity:0;animation:fadeUp 0.9s 0.7s cubic-bezier(0.16,1,0.3,1) forwards}
.hero__actions{display:flex;gap:1rem;flex-shrink:0;opacity:0;animation:fadeUp 0.9s 0.9s cubic-bezier(0.16,1,0.3,1) forwards}
.hero__stats{z-index:2;display:flex;flex-direction:column;gap:1.8rem;align-items:flex-end;opacity:0;animation:fadeIn 1.2s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;flex-shrink:0}
.hero__stat-number{font-family:var(--font-serif);font-size:2.8rem;line-height:1;color:var(--cream);font-weight:300}
.hero__stat-label{font-size:0.68rem;font-weight:500;letter-spacing:0.15em;text-transform:uppercase;color:rgba(232,225,216,0.4)}
.hero__scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:0.6rem;opacity:0;animation:fadeIn 1s 1.4s ease forwards;cursor:pointer}
.hero__scroll-line{width:1px;height:48px;background:linear-gradient(to bottom,var(--copper-light),transparent);animation:scrollPulse 2s ease-in-out infinite}
.hero__scroll-text{font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(232,225,216,0.4)}
@keyframes scrollPulse{0%,100%{opacity:0.4}50%{opacity:1}}

/* MARQUEE */
.marquee-section{background:var(--espresso);border-top:1px solid rgba(255,255,255,0.06);border-bottom:1px solid rgba(255,255,255,0.06);padding:1.4rem 0;overflow:hidden}
.marquee-track{display:flex;animation:marquee 32s linear infinite;white-space:nowrap}
.marquee-item{display:inline-flex;align-items:center;gap:2.5rem;padding:0 2.5rem;font-family:var(--font-serif);font-size:1.1rem;font-style:italic;color:rgba(248,245,240,0.3);flex-shrink:0}
.marquee-dot{width:4px;height:4px;border-radius:50%;background:var(--copper);flex-shrink:0}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* STRENGTHS */
.strengths-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--border)}
.strength-card{padding:3.5rem 3rem;border-right:1px solid var(--border);transition:background var(--t-base)}
.strength-card:last-child{border-right:none}
.strength-card:hover{background:var(--cream-deep)}
.strength-number{font-family:var(--font-serif);font-size:4.5rem;font-weight:300;color:var(--stone);line-height:1;margin-bottom:1.5rem;display:block}
.strength-card h3{font-size:1.3rem;margin-bottom:1rem;letter-spacing:-0.01em}

/* SPLIT SECTION */
.split-section{display:grid;grid-template-columns:1fr 1fr;min-height:620px}
.split-section__image{position:relative;overflow:hidden}
.split-section__image img{width:100%;height:100%;object-fit:cover;transition:transform 1.2s cubic-bezier(0.16,1,0.3,1)}
.split-section:hover .split-section__image img{transform:scale(1.04)}
.split-section__content{padding:clamp(3rem,6vw,6rem);display:flex;flex-direction:column;justify-content:center;background:var(--bg-secondary)}
.split-section--dark .split-section__content{background:var(--bg-invert)}
.split-section--dark h2,.split-section--dark h3,.split-section--dark .eyebrow{color:var(--cream)}
.split-section--dark p{color:rgba(248,245,240,0.55)}
.split-section--dark .eyebrow{color:var(--copper-light)}
.split-section--reverse .split-section__image{order:2}
.split-section--reverse .split-section__content{order:1}

/* CATALOG */
.catalog-header{display:grid;grid-template-columns:1fr auto;align-items:end;gap:2rem;margin-bottom:3rem;padding-bottom:2rem;border-bottom:1px solid var(--border)}
.catalog-layout{display:grid;grid-template-columns:210px 1fr;gap:4rem;align-items:start}
.catalog-sidebar{position:sticky;top:calc(var(--nav-h) + 2rem)}
.sidebar-title{font-size:0.7rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:var(--text-secondary);margin-bottom:1.5rem;padding-bottom:0.8rem;border-bottom:1px solid var(--border)}
.category-nav{display:flex;flex-direction:column;gap:0;list-style:none}
.cat-btn{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0.85rem 0;background:none;border:none;border-bottom:1px solid var(--border);text-align:left;cursor:pointer;font-family:var(--font-sans);font-size:0.88rem;color:var(--text-secondary);transition:color var(--t-fast),padding-left var(--t-base)}
.cat-btn .cat-count{font-size:0.72rem;color:var(--stone)}
.cat-btn:hover{color:var(--text-primary);padding-left:4px}
.cat-btn.active{color:var(--accent);font-weight:500}
.cat-btn.active .cat-count{color:var(--accent)}

/* PRODUCT CARDS */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:2px}
.product-card{position:relative;background:var(--white);overflow:hidden;cursor:pointer}
.product-card__image{position:relative;height:auto;aspect-ratio:1 / 1;background:#ffffff;overflow:hidden;display:flex;align-items:center;justify-content:center}
.product-card__image img{width:100%;height:100%;object-fit:contain;padding:12px;box-sizing:border-box;transition:transform 0.6s cubic-bezier(0.16,1,0.3,1)}
.product-image-pending{width:100%;height:100%;display:grid;place-items:center;background:linear-gradient(135deg,var(--cream-deep),var(--stone));color:var(--driftwood);font-size:.72rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase}
.product-card:hover .product-card__image img{transform:scale(1.07)}
.product-card__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(14,11,9,0.65) 0%,transparent 60%);opacity:0;transition:opacity var(--t-base)}
.product-card:hover .product-card__overlay{opacity:1}
.product-card__cta{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%) translateY(8px);background:var(--accent);color:var(--white);font-size:0.7rem;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;padding:0.6rem 1.5rem;white-space:nowrap;opacity:0;transition:all var(--t-base);border:none;cursor:pointer}
.product-card:hover .product-card__cta{opacity:1;transform:translateX(-50%) translateY(0)}
.product-card__tag{position:absolute;top:1rem;left:1rem;background:var(--espresso);color:var(--cream);font-size:0.62rem;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;padding:0.3rem 0.65rem}
.product-card__tag--copper{background:var(--accent)}
.product-card__body{padding:1.5rem 1.5rem 1.8rem;border-bottom:1px solid var(--border);transition:background var(--t-base);flex-grow:1}
.product-card:hover .product-card__body{background:var(--cream-deep)}
.product-card__name{font-family:var(--font-serif);font-size:1.2rem;font-weight:400;letter-spacing:-0.01em;color:var(--text-primary);margin-bottom:0.4rem}
.product-card__desc{font-size:0.82rem;line-height:1.55;color:var(--text-secondary);font-weight:300}
.product-card__meta{padding:0.9rem 1.5rem;display:flex;align-items:center;justify-content:space-between;background:var(--cream);border-bottom:1px solid var(--border)}
.product-card__dims{font-family:"Courier New",monospace;font-size:0.7rem;color:var(--driftwood);letter-spacing:0.03em}
.cat-header{display:flex;align-items:center;gap:1.5rem;margin-bottom:2rem;padding-bottom:1.2rem;border-bottom:1px solid var(--border)}
.cat-header h3{font-size:1.6rem;letter-spacing:-0.02em}
.cat-header-count{font-family:var(--font-serif);font-size:1rem;color:var(--driftwood);font-weight:300}
.product-category-group{display:none}
.product-category-group.active{display:block}

/* BACKWARD COMPAT — old class names */
.products-layout{display:grid;grid-template-columns:210px 1fr;gap:4rem;align-items:start}
.products-sidebar{position:sticky;top:calc(var(--nav-h) + 2rem)}
.category-menu{list-style:none;display:flex;flex-direction:column;gap:0}
.category-tab{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0.85rem 0;background:none;border:none;border-bottom:1px solid var(--border);text-align:left;cursor:pointer;font-family:var(--font-sans);font-size:0.88rem;color:var(--text-secondary);transition:color var(--t-fast),padding-left var(--t-base)}
.category-tab:hover,.category-tab.active{color:var(--accent);font-weight:500;padding-left:4px}
.product-img-wrapper{position:relative;height:auto;aspect-ratio:1 / 1;background:#ffffff;overflow:hidden;display:flex;align-items:center;justify-content:center}
.product-img{width:100%;height:100%;object-fit:contain;padding:12px;box-sizing:border-box;transition:transform 0.6s cubic-bezier(0.16,1,0.3,1)}
.product-card:hover .product-img{transform:scale(1.07)}
.product-badge{position:absolute;top:1rem;left:1rem;background:var(--espresso);color:var(--cream);font-size:0.62rem;font-weight:500;letter-spacing:0.12em;text-transform:uppercase;padding:0.3rem 0.65rem}
.product-info{padding:1.5rem 1.5rem 1.8rem;border-bottom:1px solid var(--border);flex-grow:1;display:flex;flex-direction:column;transition:background var(--t-base)}
.product-card__desc-text{display:block;min-height:4.8rem;line-height:1.55}
.product-spec-line{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-variant-chip.is-selected{border-color:var(--accent);background:var(--accent);color:var(--white);font-weight:600}
.product-card:hover .product-info{background:var(--cream-deep)}
.product-title{font-family:var(--font-serif);font-size:1.2rem;font-weight:400;letter-spacing:-0.01em;color:var(--text-primary);margin-bottom:0.4rem}
.product-size{font-family:"Courier New",monospace;font-size:0.7rem;color:var(--driftwood);letter-spacing:0.03em;margin-top:auto;padding-top:0.9rem;display:flex;justify-content:space-between;border-top:1px solid var(--border)}

/* MATCHER */
.matcher-section{background:var(--bg-invert);padding:clamp(4rem,8vw,8rem) 0;margin-top:4rem}
.matcher-section .eyebrow{color:var(--copper-light)}
.matcher-section h2{color:var(--cream)}
.matcher-layout{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;margin-top:4rem}
.matcher-options-group{display:flex;flex-direction:column;gap:2.5rem}
.matcher-group-label{font-size:0.7rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:rgba(248,245,240,0.4);margin-bottom:1rem;display:block}
.matcher-pills{display:grid;grid-template-columns:repeat(2,1fr);gap:0.75rem}
.matcher-pill,.matcher-btn{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);padding:1.2rem 1.4rem;cursor:pointer;transition:all var(--t-base);text-align:left;display:flex;flex-direction:column;gap:0.3rem}
.matcher-pill:hover,.matcher-btn:hover{background:rgba(255,255,255,0.08);border-color:rgba(168,117,84,0.4)}
.matcher-pill.active,.matcher-btn.active{background:rgba(168,117,84,0.12);border-color:var(--copper)}
.matcher-btn-title,.matcher-pill__name{font-family:var(--font-serif);font-size:1.05rem;color:var(--cream);display:block;margin-bottom:0.2rem}
.matcher-btn-desc,.matcher-pill__sub{font-size:0.72rem;color:rgba(248,245,240,0.4);letter-spacing:0.04em}
.matcher-preview-panel{display:flex;flex-direction:column;align-items:center}
.matcher-canvas,.matcher-render{width:100%;max-width:320px;aspect-ratio:1;position:relative;margin-bottom:2.5rem}
.matcher-table-top,.matcher-render-top{position:absolute;top:22%;left:12%;right:12%;height:16%;background:#EDEAE5;border-radius:3px;box-shadow:0 4px 20px rgba(0,0,0,0.4),inset 0 1px 0 rgba(255,255,255,0.2);transition:all var(--t-slow)}
.matcher-table-leg,.matcher-render-base{position:absolute;bottom:10%;left:50%;transform:translateX(-50%);width:6%;height:46%;background:#3D3228;transition:all var(--t-slow)}
.matcher-table-leg::after,.matcher-render-base::after{content:"";position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:600%;height:12%;background:#3D3228;border-radius:1px}
.matcher-info{text-align:center;max-width:320px}
.matcher-info h4,.matcher-details h4{font-family:var(--font-serif);font-size:1.6rem;color:var(--cream);margin-bottom:0.8rem}
.matcher-info p,.matcher-details p{font-size:0.9rem;color:rgba(248,245,240,0.5);line-height:1.65;margin-bottom:1.8rem}

/* PROJECTS */
.projects-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.project-card{position:relative;overflow:hidden;cursor:pointer}
.project-img-wrapper{position:relative;height:clamp(300px,40vw,500px);overflow:hidden}
.project-img-wrapper img,.project-card__image img{width:100%;height:100%;object-fit:cover;filter:brightness(0.72) saturate(0.8);transition:transform 1s cubic-bezier(0.16,1,0.3,1),filter var(--t-slow)}
.project-card:hover .project-img-wrapper img,.project-card:hover .project-card__image img{transform:scale(1.06);filter:brightness(0.6) saturate(0.85)}
.project-card__content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:2.5rem;background:linear-gradient(to top,rgba(14,11,9,0.88) 0%,transparent 55%)}
.project-info{position:absolute;bottom:0;left:0;right:0;padding:2.5rem;background:linear-gradient(to top,rgba(14,11,9,0.88) 0%,transparent 55%)}
.project-meta,.project-card__location{font-size:0.68rem;font-weight:500;letter-spacing:0.18em;text-transform:uppercase;color:var(--copper-light);margin-bottom:0.6rem;display:block}
.project-card__title{font-family:var(--font-serif);font-size:clamp(1.3rem,2.5vw,2rem);color:var(--cream);line-height:1.15;margin-bottom:1rem}
.project-desc{font-size:0.88rem;color:rgba(248,245,240,0.6);line-height:1.6;margin-bottom:1rem}
.project-product-badge{display:inline-flex;align-items:center;gap:0.5rem;background:rgba(248,245,240,0.1);backdrop-filter:blur(6px);padding:0.35rem 0.85rem;font-size:0.72rem;color:rgba(248,245,240,0.65);letter-spacing:0.06em;border:1px solid rgba(248,245,240,0.15)}
.project-card.project-card { text-decoration:none; color:inherit; }

/* CONTACT */
.contact-grid,.contact-layout{display:grid;grid-template-columns:1fr 1.3fr;gap:6rem;align-items:start}
.contact-info-list,.contact-info{display:flex;flex-direction:column;gap:3rem}
.contact-item,.contact-block{display:flex;flex-direction:column;gap:0.6rem}
.contact-block__label{font-size:0.7rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:var(--accent);margin-bottom:0.8rem;display:block}
.contact-item h4,.contact-block h4{font-family:var(--font-serif);font-size:1.4rem;color:var(--text-primary);margin-bottom:0.4rem}
.contact-item p,.contact-block p{font-size:0.95rem;line-height:1.7}
.contact-item a,.contact-block a{color:var(--accent);text-decoration:none;transition:color var(--t-fast)}
.contact-item a:hover,.contact-block a:hover{color:var(--bark)}
.contact-form,.contact-form-wrap{background:var(--cream-deep);padding:3.5rem;border:1px solid var(--border)}
.contact-form h3,.contact-form-title{font-size:1.8rem;margin-bottom:2rem}
.contact-form-wrapper{display:block}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group,.form-field{margin-bottom:1.5rem}
.form-label{display:block;font-size:0.72rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--text-primary);margin-bottom:0.6rem}
.form-control,.form-input,.form-textarea{width:100%;padding:0.9rem 1rem;background:var(--white);border:1px solid var(--border);font-family:var(--font-sans);font-size:0.92rem;color:var(--text-primary);outline:none;transition:border-color var(--t-fast);border-radius:0;appearance:none}
.form-control:focus,.form-input:focus,.form-textarea:focus{border-color:var(--accent)}
textarea.form-control,.form-textarea{resize:vertical;min-height:130px}

/* STATUS */
.badge{display:inline-flex;align-items:center;gap:0.5rem;padding:0.4rem 0.9rem;font-size:0.78rem;font-weight:500;letter-spacing:0.04em}
.badge-open{background:#E3F4E5;color:#2A6B30;border:1px solid #B3DDB7}
.badge-closed{background:#FDE8DC;color:#A8421A;border:1px solid #F5C3A8}
.office-status-wrapper{margin-top:0.8rem}

/* FLOATING CTA */
.floating-cta{position:fixed;bottom:2rem;right:2rem;z-index:800}
.floating-cta-btn,.floating-cta__btn{display:inline-flex;align-items:center;gap:0.7rem;background:var(--espresso);color:var(--cream);text-decoration:none;padding:0.9rem 1.8rem;font-size:0.78rem;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;box-shadow:var(--shadow-lg);transition:all var(--t-base);border:1px solid rgba(255,255,255,0.06)}
.floating-cta-btn:hover,.floating-cta__btn:hover{background:var(--accent);box-shadow:0 16px 40px rgba(168,117,84,0.4);transform:translateY(-2px)}
.floating-cta-dot,.floating-pulse{width:7px;height:7px;border-radius:50%;background:#4caf76;flex-shrink:0;position:relative}
.floating-cta-dot::after,.floating-pulse::after{content:"";position:absolute;inset:-3px;border-radius:50%;background:#4caf76;animation:floatPulse 2s ease-in-out infinite}
@keyframes floatPulse{0%{transform:scale(1);opacity:0.7}100%{transform:scale(2.5);opacity:0}}

/* MODAL */
.modal{position:fixed;inset:0;z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all var(--t-base)}
.modal.active{opacity:1;visibility:visible}
.modal-overlay,.modal__overlay{position:absolute;inset:0;background:rgba(14,11,9,0.6);backdrop-filter:blur(8px)}
.modal-content,.modal__box{position:relative;z-index:1;background:var(--cream);width:100%;max-width:480px;padding:3.5rem;border:1px solid var(--border);box-shadow:var(--shadow-xl);transform:translateY(24px);transition:transform var(--t-slow)}
.modal.active .modal-content,.modal.active .modal__box{transform:translateY(0)}
.modal-close,.modal__close{position:absolute;top:1.5rem;right:1.5rem;background:none;border:none;font-size:1.3rem;color:var(--text-secondary);cursor:pointer;transition:color var(--t-fast);line-height:1}
.modal-close:hover,.modal__close:hover{color:var(--text-primary)}

/* Product detail modal: keep long specifications reachable on every viewport. */
#product-detail-modal{padding:clamp(.75rem,3vh,2rem);align-items:center;overflow:hidden}
#product-detail-modal .modal__box{
  width:min(940px,calc(100vw - 3rem))!important;
  max-width:940px!important;
  max-height:calc(100dvh - clamp(1.5rem,6vh,4rem));
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  -webkit-overflow-scrolling:touch;
  padding:clamp(1.25rem,2.5vw,2rem)!important;
}
#product-detail-modal .modal__box>div:first-of-type{display:grid!important;grid-template-columns:minmax(260px,.9fr) minmax(340px,1.1fr);gap:clamp(1.25rem,3vw,2.5rem)!important;align-items:start!important}
#product-detail-modal .modal-product-gallery{aspect-ratio:4 / 3; min-height:0; background:#fff; border-radius:4px; overflow:hidden; display:flex; align-items:center; justify-content:center}
#product-detail-modal #modal-product-img{display:block;width:100%!important;height:100%!important;object-fit:contain!important;background:#fff;border-radius:4px!important;box-shadow:none!important}
#product-detail-modal #modal-product-name{margin:.25rem 0 .55rem!important;font-size:clamp(1.35rem,2vw,1.8rem)!important}
#product-detail-modal #modal-product-desc{font-size:.82rem!important;line-height:1.55!important;margin-bottom:.8rem!important}
#product-detail-modal #modal-product-desc br{display:none}
#product-detail-modal #modal-product-specs{line-height:1.55!important}
#product-detail-modal .modal__box>div:nth-of-type(2){margin-top:1rem!important;padding-top:.85rem!important}
#product-detail-modal .modal__box>div:nth-of-type(3){margin-top:1rem!important;align-items:flex-end}
#product-detail-modal .modal__close{
  position:sticky;
  top:0;
  float:right;
  z-index:3;
  width:44px;
  height:44px;
  margin:-.75rem -.75rem 0 0;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(248,245,240,.94);
  box-shadow:0 3px 14px rgba(46,39,34,.14);
}

/* FOOTER */
footer{background:var(--espresso);color:var(--cream);padding:6rem 0 2.5rem}
.footer-grid,.footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.5fr;gap:4rem;margin-bottom:5rem}
.footer-brand .logo{color:var(--cream);margin-bottom:1.2rem;display:block;text-decoration:none;font-family:var(--font-display);font-size:1.55rem;letter-spacing:0.06em}
.footer-brand .logo span{color:var(--copper-light)}
.footer-brand p{font-size:0.9rem;line-height:1.7;color:rgba(248,245,240,0.4)}
.footer-col{display:flex;flex-direction:column;gap:1.2rem}
.footer-col h5,.footer-col__title{font-size:0.7rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:rgba(248,245,240,0.35);margin-bottom:0.5rem;font-family:var(--font-sans)}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0.7rem}
.footer-links a{text-decoration:none;color:rgba(248,245,240,0.55);font-size:0.9rem;transition:color var(--t-fast),padding-left var(--t-base)}
.footer-links a:hover{color:var(--copper-light);padding-left:4px}
.footer-bottom{padding-top:2rem;border-top:1px solid rgba(255,255,255,0.06);display:flex;justify-content:space-between;align-items:center;gap:1rem}
.footer-bottom p{font-size:0.78rem;color:rgba(248,245,240,0.28)}
.footer-bottom a{color:rgba(248,245,240,0.45);text-decoration:none;transition:color var(--t-fast)}
.footer-bottom a:hover{color:var(--copper-light)}
.footer-address p{font-size:0.85rem;line-height:1.7;color:rgba(248,245,240,0.4);margin-bottom:1rem}
.footer-address strong{color:rgba(248,245,240,0.65)}
.footer-address address{font-style:normal;font-size:0.85rem;line-height:1.7;color:rgba(248,245,240,0.4)}
.detail-footer .footer-col__title{margin:0}

/* ANIMATIONS */
.scroll-reveal,.reveal{opacity:0;transform:translateY(36px);transition:opacity 0.85s cubic-bezier(0.16,1,0.3,1),transform 0.85s cubic-bezier(0.16,1,0.3,1)}
.scroll-reveal.revealed,.reveal.revealed{opacity:1;transform:translateY(0)}
.reveal.delay-1{transition-delay:0.1s}
.reveal.delay-2{transition-delay:0.2s}
.reveal.delay-3{transition-delay:0.3s}
.reveal.delay-4{transition-delay:0.4s}
.reveal-fade{opacity:0;transition:opacity 0.85s cubic-bezier(0.16,1,0.3,1)}
.reveal-fade.revealed{opacity:1}
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

/* RESPONSIVE */
@media(max-width:1200px){
  .nav-menu{gap:1.6rem}
  .nav-actions .magnetic-wrap{display:none}
  .hero__stats{display:none}
  .catalog-layout,.products-layout{grid-template-columns:1fr}
  .catalog-sidebar,.products-sidebar{position:static}
  .category-nav,.category-menu{flex-direction:row;flex-wrap:wrap;gap:0.4rem}
  .cat-btn,.category-tab{border:1px solid var(--border);padding:0.5rem 1rem;font-size:0.82rem}
  .cat-btn.active,.category-tab.active{border-color:var(--accent)}
  .strengths-grid{grid-template-columns:1fr}
  .strength-card{border-right:none;border-bottom:1px solid var(--border)}
  .split-section{grid-template-columns:1fr;min-height:auto}
  .split-section__image{height:380px}
  .matcher-layout,.matcher-grid{grid-template-columns:1fr}
  .contact-grid,.contact-layout{grid-template-columns:1fr;gap:3rem}
  .footer-grid,.footer-top{grid-template-columns:repeat(2,1fr)}
  .projects-grid{grid-template-columns:1fr}
}
@media(max-width:960px){
  .nav-menu{display:none}
  .nav-actions{display:none}
  .mobile-nav-toggle{display:flex}
  .mobile-drawer{display:flex;justify-content:flex-start;padding-top:6rem}
}
@media(max-width:768px){
  .nav-menu{display:none}
  .nav-actions{display:none}
  .mobile-nav-toggle{display:flex}
  .mobile-drawer{display:flex;justify-content:flex-start;padding-top:6rem}
  .hero__title{font-size:clamp(2.5rem,12vw,4.5rem)}
  .hero__bottom{flex-direction:column;align-items:flex-start}
  .hero__scroll{display:none}
  .products-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr))}
  .form-row{grid-template-columns:1fr}
  .contact-form,.contact-form-wrap{padding:2rem 1.5rem}
  .footer-grid,.footer-top{grid-template-columns:1fr;gap:2.5rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .modal-content,.modal__box{padding:2.5rem 1.5rem;margin:1rem}
  .matcher-pills{grid-template-columns:1fr}
  #product-detail-modal{padding:.5rem;align-items:flex-start}
  #product-detail-modal .modal__box{max-height:calc(100dvh - 1rem);margin:0;padding:1.25rem!important}
  #product-detail-modal .modal__box>div:first-of-type{grid-template-columns:1fr!important}
  #product-detail-modal .modal-product-gallery{width:100%; aspect-ratio:4 / 3}
  #product-detail-modal .modal__close{margin:-.4rem -.4rem .25rem 0}
}
@media(max-width:480px){
  .hero__actions{flex-direction:column}
  .catalog-header{grid-template-columns:1fr}
}

/* Verified product detail pages */
.verified-product-page{padding:8rem 0 5rem;background:var(--cream,#f8f5f0);color:var(--text-primary,#222)}
.product-breadcrumb{display:flex;flex-wrap:wrap;gap:.55rem;align-items:center;margin-bottom:2.5rem;font-size:.78rem;color:var(--text-secondary,#706b61)}
.product-breadcrumb a,.verified-product-back{color:inherit;text-decoration:none}
.product-breadcrumb a:hover,.verified-product-back:hover{color:var(--copper,#a8663e)}
.verified-product-hero{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);gap:clamp(2rem,6vw,6rem);align-items:start}
.verified-product-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.verified-product-gallery figure{margin:0;overflow:hidden;border-radius:8px;background:#fff;aspect-ratio:1/1}
.verified-product-gallery figure:first-child{grid-column:1/-1;aspect-ratio:16/10}
.verified-product-gallery img{display:block;width:100%;height:100%;object-fit:contain}
.verified-product-summary{position:sticky;top:7rem}
.verified-product-summary h1{font-family:var(--font-serif,Georgia,serif);font-size:clamp(2.4rem,5vw,4.5rem);font-weight:400;line-height:1.03;margin:.7rem 0 1rem}
.verified-product-sku{font-size:.78rem;letter-spacing:.08em;color:var(--text-secondary,#706b61)}
.verified-product-intro{font-size:1rem;line-height:1.85;color:var(--text-secondary,#706b61);margin:1.5rem 0 2rem}
.verified-product-details{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1.5rem,4vw,4rem);margin:5rem 0 3rem;padding:3rem 0;border-top:1px solid rgba(0,0,0,.12);border-bottom:1px solid rgba(0,0,0,.12)}
.verified-product-details h2{font-family:var(--font-serif,Georgia,serif);font-size:1.5rem;font-weight:400;margin:0 0 1rem}
.verified-product-details ul{margin:0;padding-left:1.15rem;color:var(--text-secondary,#706b61);line-height:1.9}
.verified-product-details dl{display:grid;grid-template-columns:auto 1fr;gap:.75rem 1rem;margin:1rem 0 0}
.verified-product-details dt{font-weight:600}.verified-product-details dd{margin:0;color:var(--text-secondary,#706b61)}
.verified-product-back{display:inline-flex;margin-top:1rem;font-size:.85rem}
.verified-product-procurement{margin:1rem 0 3rem;padding:clamp(2rem,5vw,4rem);background:#fff;border-radius:8px}
.verified-product-procurement__intro{max-width:72ch;margin-bottom:2.5rem}
.verified-product-procurement__intro h2,.verified-product-guidance-grid h2,.verified-product-reference h2{font-family:var(--font-serif,Georgia,serif);font-size:clamp(1.55rem,3vw,2.25rem);font-weight:400;line-height:1.2;margin:.55rem 0 1rem}
.verified-product-procurement p,.verified-product-reference p{color:var(--text-secondary,#706b61);line-height:1.75}
.verified-product-guidance-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1.5rem,4vw,4rem);border-top:1px solid rgba(0,0,0,.1);padding-top:2.5rem}
.verified-product-guidance-grid article{display:flex;flex-direction:column;align-items:flex-start}
.verified-product-guidance-grid ul{margin:.75rem 0 1.75rem;padding-left:1.2rem;color:var(--text-secondary,#706b61);line-height:1.8}
.verified-product-guidance-grid .btn{margin-top:auto}
.verified-product-reference{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:2rem;margin:0 0 2rem;padding:2rem;border:1px solid rgba(0,0,0,.12);border-left:4px solid var(--copper,#a8663e);border-radius:4px}
.verified-product-reference p{max-width:68ch;margin-bottom:0}
.verified-product-reference__link{color:var(--copper,#a8663e);font-weight:600;text-decoration:none;white-space:nowrap}
.verified-product-reference__link:hover{text-decoration:underline}
.product-card__meta{gap:.75rem;flex-wrap:wrap}
.product-detail-page-link{color:var(--copper,#a8663e)}
.verified-products-index{padding:3.5rem 0;background:#fff;border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06)}
.verified-products-index h2{font-family:var(--font-serif,Georgia,serif);font-size:clamp(2rem,4vw,3.2rem);font-weight:400;margin:.5rem 0 .75rem}
.verified-products-index>.container>p{max-width:64ch;color:var(--text-secondary,#706b61);line-height:1.7}
.verified-products-index__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-top:2rem}
.verified-products-index__grid a{display:flex;flex-direction:column;gap:.5rem;min-height:155px;padding:1.5rem;border:1px solid rgba(0,0,0,.1);border-radius:6px;color:inherit;text-decoration:none;transition:border-color .2s,transform .2s}
.verified-products-index__grid a:hover{border-color:var(--copper,#a8663e);transform:translateY(-2px)}
.verified-products-index__grid span,.verified-products-index__grid small{font-size:.72rem;letter-spacing:.08em;color:var(--text-secondary,#706b61)}
.verified-products-index__grid strong{font-family:var(--font-serif,Georgia,serif);font-size:1.25rem;font-weight:400;line-height:1.3}
@media(max-width:900px){
  .verified-product-hero{grid-template-columns:1fr}
  .verified-product-summary{position:static}
  .verified-product-details{grid-template-columns:1fr}
  .verified-product-guidance-grid,.verified-product-reference{grid-template-columns:1fr}
  .verified-product-reference{align-items:start}
  .verified-product-reference__link{white-space:normal}
  .verified-products-index__grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .verified-product-page{padding-top:6rem}
  .verified-product-gallery{grid-template-columns:1fr}
  .verified-product-gallery figure:first-child{grid-column:auto}
}

/* Accessibility and modern interaction defaults */
:focus-visible{outline:3px solid var(--copper-light);outline-offset:4px}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .scroll-reveal,.reveal,.reveal-fade{opacity:1;transform:none}
}


/* --- Refactored Components (Products & Modals) --- */
.section--tint { padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; }
.catalog-header p { margin-top: 1rem; max-width: 54ch; }
.catalog-layout-section { padding-top: 2rem; }

/* Product Detail Modal */
.modal-product-detail { max-width: 900px; padding: 2.5rem; }
.modal-product-layout { display: flex; gap: 2.5rem; align-items: flex-start; }
@media (max-width: 768px) {
  .modal-product-layout { flex-direction: column; gap: 1.5rem; }
}
.modal-product-gallery { flex: 1; min-width: 300px; }
.modal-product-gallery img { width: 100%; border-radius: 8px; object-fit: cover; box-shadow: var(--shadow-sm, 0 4px 12px rgba(0,0,0,0.1)); }
.modal-product-info { flex: 1.2; min-width: 280px; }
.modal-product-sku { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--copper); display: block; }
.modal-product-title { margin-top: 0.4rem; margin-bottom: 0.8rem; font-size: 1.8rem; line-height: 1.2; }
.modal-product-desc { font-size: 0.9rem; color: #555; margin-bottom: 1.5rem; line-height: 1.6; }
.modal-product-meta { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; line-height: 1.8; border-top: 1px solid #eee; padding-top: 1.2rem; color: #444; }
.modal-product-meta > div { display: block; }
.modal-product-specs-wrap { margin-top: 1.5rem; border-top: 1px solid #eee; padding-top: 1.2rem; }
.modal-product-specs-title { margin-bottom: 0.8rem; font-size: 0.95rem; font-weight: 600; color: #2e2722; }
.modal-product-specs-list { font-size: 0.85rem; color: #555; padding-left: 1.2rem; line-height: 1.8; margin: 0; }
.modal-product-actions { margin-top: 2rem; display: flex; gap: 1rem; }
#product-detail-modal .modal-product-nav { position: absolute; top: 50%; left: 50%; width: min(1000px, calc(100vw - 1rem)); transform: translate(-50%, -50%); display: flex; justify-content: space-between; pointer-events: none; z-index: 4; }
.modal-product-nav button { pointer-events: auto; width: 2.25rem; height: 2.25rem; border: 1px solid var(--border-strong); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--text-secondary); padding: 0; font: 500 1.15rem/1 var(--font-sans); cursor: pointer; transition: all var(--t-fast); box-shadow: var(--shadow-xs); }
.modal-product-nav button:hover:not(:disabled) { color: var(--accent); border-color: var(--accent); background: var(--white); }
.modal-product-nav button:disabled { opacity: .35; cursor: not-allowed; }
.modal-qty-label { display: flex; flex-direction: column; gap: 0.4rem; min-width: 120px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #444; }
.modal-qty-label input { padding: 0.8rem; font-size: 1rem; }
#modal-inquire-btn { flex: 1; padding: 1rem; font-size: 0.95rem; }

/* RFQ Modal */
.modal-rfq { max-width: 650px; padding: 2.5rem; }
.rfq-product-info { font-weight: 600; color: var(--copper); margin-bottom: 1.5rem; font-size: 1.05rem; }
.rfq-form-row { display: flex; gap: 1rem; }
@media (max-width: 500px) {
  .rfq-form-row { flex-direction: column; gap: 0; }
}
.rfq-textarea { resize: vertical; font-family: inherit; font-size: 0.9rem; padding: 0.85rem; width: 100%; border: 1px solid #ddd; border-radius: 4px; }
.rfq-submit-btn { width: 100%; padding: 1rem; margin-top: 1rem; font-size: 1rem; }
.rfq-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #e8f5e9; color: #2e7d32; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.5rem; }
.rfq-success-title { margin-bottom: 1rem; font-size: 1.4rem; color: #2e2722; font-weight: 600; }
.rfq-success-msg { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 2rem; }
.rfq-success-note { font-size: 0.85rem; display: block; margin-top: 1.2rem; color: #888; }

/* Product Card Enhancements */
.product-card { cursor: pointer; display: flex; flex-direction: column; height: 100%; }
.product-card__name-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.product-card__sku-badge { font-size: 0.65rem; background: #f0ebe6; padding: 2px 8px; border-radius: 4px; font-weight: 600; color: #666; letter-spacing: 0.05em; }
.product-card__desc-text { font-size: 0.85rem; margin-top: 0.5rem; color: #666; display: block; min-height: 4.8rem; overflow: hidden; line-height: 1.5; }
.product-card__desc-text .product-spec-line { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card__dims-text { font-size: 0.75rem; color: #888; }
.product-card .btn-arrow { font-size: 0.75rem; padding: 0.3rem 0; }
.product-quality-badge { position:absolute; top:1rem; right:1rem; z-index:3; max-width:70%; background:rgba(46,39,34,.88); color:var(--cream); font-size:.62rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; padding:.42rem .65rem; border-radius:999px; box-shadow:0 8px 20px rgba(0,0,0,.16); }
.product-quality-note { margin-top:1rem; padding:.85rem 1rem; border:1px solid rgba(183,123,87,.28); background:#faf6f1; color:#6b5a4e; font-size:.8rem; line-height:1.65; border-radius:8px; }

/* SIDEBAR DROPDOWN UX */
.arrow-icon {
  display: inline-block;
  font-size: 0.55rem;
  margin-right: 0.5rem;
  transition: transform var(--t-fast) ease;
  vertical-align: middle;
  opacity: 0.6;
}
.cat-btn.open .arrow-icon {
  transform: rotate(90deg);
}
.subcat-dropdown {
  list-style: none !important;
  padding-left: 1.2rem !important;
  margin: 0.3rem 0 0.8rem 0 !important;
  border-left: 1px solid var(--border) !important;
}
.subcat-dropdown li {
  margin-bottom: 0.25rem !important;
  list-style-type: none !important; /* Force remove default bullets */
}
.subcat-dropdown a {
  font-size: 0.8rem !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 4px !important;
  transition: all var(--t-fast) ease !important;
  font-family: var(--font-sans) !important;
}
.subcat-dropdown a:hover {
  background: rgba(184, 142, 107, 0.08) !important;
  color: var(--accent) !important;
}
.subcat-dropdown a.active {
  color: var(--accent) !important;
  font-weight: 500 !important;
  background: rgba(184, 142, 107, 0.08) !important;
}
.subcat-count {
  font-size: 0.75rem !important;
  color: var(--stone) !important;
  background: none !important;
  padding: 0 !important;
}
.subcat-dropdown a.active .subcat-count {
  color: var(--accent) !important;
}

/* SIDEBAR SEARCH UX */
.sidebar-search {
  position: relative !important;
  margin-bottom: 1.5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.sidebar-search input {
  width: 100% !important;
  padding: 0.65rem 2.2rem 0.65rem 1rem !important;
  font-size: 0.82rem !important;
  font-family: var(--font-sans) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-strong) !important;
  background: var(--white) !important;
  border-radius: 2px !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: all var(--t-fast) !important;
}
.sidebar-search input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(184, 142, 107, 0.15) !important;
}
.search-clear-btn {
  position: absolute !important;
  right: 0.8rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  color: var(--stone) !important;
  font-size: 0.85rem !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all var(--t-fast) !important;
}
.search-clear-btn.visible {
  opacity: 1 !important;
  visibility: visible !important;
}
.search-clear-btn:hover {
  color: var(--accent) !important;
}

/* Transformation Stories Section */
.transformation-section {
  padding: 4rem 0;
  background-color: #faf8f5;
}
.transform-header {
  text-align: center;
  margin-bottom: 3rem;
}
.transform-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.transform-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}
.transform-row:nth-child(even) {
  flex-direction: row-reverse;
}
.transform-img-col {
  flex: 1;
  position: relative;
}
.transform-img-col img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.transform-text-col {
  flex: 1;
}
.transform-text-col h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--copper);
}
.transform-text-col h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.transform-text-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}
.transform-cta-block {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--bg-primary);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.transform-cta-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .transform-row, .transform-row:nth-child(even) {
    flex-direction: column;
    gap: 1.5rem;
  }
}









/* Premium Editorial Layout */
.ultimate-case-section {
  padding: 6rem 0;
  border-bottom: 1px solid #f2efea;
  background-color: #fff;
}
.ultimate-case-section:nth-child(even) {
  background-color: #faf9f6;
}
.ultimate-case-header {
  margin-bottom: 3.5rem;
}
.ultimate-case-header .meta {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--copper);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.ultimate-case-header h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 3rem;
  color: #111;
  font-weight: normal;
  margin: 0;
}
.ultimate-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: start;
}
.uc-visuals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.uc-video-wrap {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  background: #000;
}
.uc-video-wrap video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.uc-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(17, 14, 12, 0.25) 0%, rgba(17, 14, 12, 0.18) 38%, rgba(17, 14, 12, 0.86) 100%);
  transition: background 0.25s ease, opacity 0.25s ease;
}
.uc-video-poster:hover { background: linear-gradient(180deg, rgba(17, 14, 12, 0.18) 0%, rgba(17, 14, 12, 0.12) 38%, rgba(17, 14, 12, 0.78) 100%); }
.uc-video-poster.is-hidden { opacity: 0; pointer-events: none; }
.uc-video-poster__eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.uc-video-poster__title {
  margin-top: auto;
  max-width: 90%;
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.45rem, 3.2vw, 2.65rem);
  line-height: 1.02;
  text-wrap: balance;
}
.uc-video-poster__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.uc-video-poster__play {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  padding-left: 0.12rem;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
@media (max-width: 600px) {
  .uc-video-poster { padding: 1.1rem; }
  .uc-video-poster__title { max-width: 100%; font-size: 1.35rem; }
  .uc-video-poster__footer { font-size: 0.62rem; }
  .uc-video-poster__play { width: 2.55rem; height: 2.55rem; }
}
.photo-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.photo-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  gap: 15px;
  width: 100%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.photo-carousel::-webkit-scrollbar {
  display: none;
}
.carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #eaeaea;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.carousel-btn.prev {
  left: -20px;
}
.carousel-btn.next {
  right: -20px;
}
.uc-narrative {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding-top: 0.35rem;
}
.project-detail-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(74, 51, 38, 0.25);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.project-detail-link:hover { color: #fff; border-color: var(--espresso); background: var(--espresso); }
.project-listing-page .floating-cta { display: none; }
.uc-text-block h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--copper);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.uc-text-block p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.uc-testimonial {
  border-top: 1px solid #f2efea;
  padding-top: 2rem;
  margin-top: 1rem;
}
.uc-testimonial blockquote {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--espresso);
}
.uc-testimonial figcaption {
  margin-top: 1rem;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.uc-testimonial p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #111;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.uc-testimonial .author {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
}
.uc-testimonial .author span {
  display: block;
  font-weight: normal;
  color: #777;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.25rem;
}

/* Floating Sidebar Filter Widget */
.editorial-filter-drawer {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
}
.filter-tag {
  background: #111;
  color: #fff;
  padding: 18px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  writing-mode: vertical-lr;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.filter-tag:hover {
  background: var(--copper);
}
.filter-menu-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(242, 239, 234, 0.8);
  border-left: none;
  border-radius: 0 8px 8px 0;
  width: 250px;
  padding: 2.5rem 2rem;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  position: absolute;
  left: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.editorial-filter-drawer:hover .filter-menu-panel {
  transform: translateX(0);
}
.editorial-filter-drawer:hover .filter-tag {
  transform: translateX(250px);
  border-radius: 0 4px 4px 0;
}
.filter-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f2efea;
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.filter-btn {
  background: transparent;
  border: none;
  padding: 4px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: #888;
  text-align: left;
  position: relative;
  transition: color 0.3s ease;
  width: fit-content;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--copper);
  transition: width 0.3s ease;
}
.filter-btn.active {
  color: #111;
}
.filter-btn.active::after {
  width: 100%;
}
.filter-btn:hover {
  color: var(--copper);
}

/* Luxury Editorial Side Index Navigation */
.scrollspy-dots {
  position: fixed;
  right: 50px;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 1000;
  align-items: flex-end;
}
.spy-dot {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  height: 20px;
  transition: all 0.3s ease;
  position: relative;
}
.spy-dot::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #ddd;
  transition: all 0.3s ease;
}
.spy-dot::after {
  content: attr(data-index);
  font-size: 0.7rem;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #bbb;
  transition: all 0.3s ease;
}
.spy-dot.active::before {
  width: 35px;
  background-color: var(--copper);
}
.spy-dot.active::after {
  color: var(--copper);
  font-weight: 700;
  transform: scale(1.1);
}
.spy-dot .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(-50%) translateX(10px);
}
.spy-dot:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Transitions for case studies */
.ultimate-case-section {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ultimate-case-section.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 992px) {
  .scrollspy-dots, .editorial-filter-drawer {
    display: none;
  }
  .ultimate-case-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
}

/* Evidence-backed project detail pages */
.verified-project-page { padding: 8rem 0 5rem; background: #f8f7f4; min-height: 100vh; }
.verified-project-header { max-width: 920px; margin: 2.5rem 0 3rem; }
.verified-project-header h1 { font-size: clamp(2.4rem, 5vw, 5.2rem); line-height: 1.08; margin: .6rem 0 1.4rem; }
.verified-project-header p { max-width: 780px; font-size: 1.08rem; line-height: 1.8; color: #555; }
.verified-project-media video { display: block; width: 100%; max-height: 72vh; aspect-ratio: 16 / 9; object-fit: cover; background: #111; border-radius: 8px; }
.verified-project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
.verified-project-gallery figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 6px; background: #eee; }
.verified-project-gallery img { width: 100%; height: 100%; object-fit: cover; }
.verified-project-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 3rem 0; background: #ddd; border: 1px solid #ddd; }
.verified-project-facts div { padding: 1.5rem; background: #fff; }
.verified-project-facts h2, .verified-project-standard h2 { margin: 0 0 .7rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); }
.verified-project-facts p, .verified-project-standard p { margin: 0; line-height: 1.7; }
.verified-project-standard { max-width: 920px; padding: 1.6rem; border-left: 3px solid var(--copper); background: #fff; }
.verified-project-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.project-product-planning { margin-top: 3rem; padding: 2rem; background: #fff; border: 1px solid #e1ddd7; }
.project-product-intro { max-width: 800px; }
.project-product-intro h2 { margin: 0 0 .75rem; font-size: clamp(1.35rem, 2.5vw, 2rem); }
.project-product-intro p { margin: 0; color: #666; line-height: 1.75; }
.project-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.project-product-card { display: grid; grid-template-columns: 160px 1fr; gap: 1.25rem; padding: 1rem; border: 1px solid #e7e2dc; background: #faf9f7; }
.project-product-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #eee; }
.project-product-card h3 { margin: .25rem 0 .5rem; font-size: 1.05rem; line-height: 1.35; }
.project-product-card h3 a, .project-product-link { color: var(--espresso); text-decoration: none; }
.project-product-card h3 a:hover, .project-product-link:hover { color: var(--copper); }
.project-product-card p { margin: 0 0 .65rem; color: #666; font-size: .9rem; }
.project-product-sku { color: var(--copper) !important; font-size: .72rem !important; letter-spacing: .1em; }
.project-product-link { font-weight: 700; font-size: .9rem; }
.project-detail-link { display: inline-block; margin-top: 1.2rem; color: var(--copper); font-weight: 700; text-decoration: none; }
.inquiry-actions { margin-top: 1.25rem; padding: 1.25rem; border: 1px solid rgba(180,111,68,.35); background: #fffaf6; }
.inquiry-actions[hidden] { display: none; }
.form-help { margin: .65rem 0 0; color: #777; font-size: .82rem; line-height: 1.6; }
.inquiry-actions p { margin: 0 0 1rem; line-height: 1.65; color: #4d433d; }
.inquiry-actions__buttons { display: flex; flex-wrap: wrap; gap: .7rem; }
.inquiry-actions__buttons .btn { flex: 1 1 170px; text-align: center; justify-content: center; }
@media (max-width: 700px) {
  .verified-project-page { padding-top: 6.5rem; }
  .verified-project-gallery, .verified-project-facts { grid-template-columns: 1fr; }
  .project-product-planning { padding: 1.25rem; }
  .project-product-grid { grid-template-columns: 1fr; }
  .project-product-card { grid-template-columns: 110px 1fr; gap: 1rem; }
}




/* About: restrained editorial presentation for commercial buyers. */
.about-page{overflow:hidden;background:var(--white)}
.about-page section:not(.about-hero){padding:clamp(5rem,8vw,8rem) 0}
.about-hero{position:relative;min-height:min(820px,88vh);display:flex;align-items:flex-end;color:var(--white);background:#15120f}
.about-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.about-hero__overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(16,12,9,.86) 0%,rgba(16,12,9,.5) 55%,rgba(16,12,9,.18) 100%),linear-gradient(0deg,rgba(16,12,9,.55),transparent 48%)}
.about-hero__content{position:relative;z-index:1;width:min(880px,100%);padding-top:11rem;padding-bottom:clamp(4rem,8vw,7rem);max-width:880px;margin-left:max(0px,calc((100vw - 1240px)/2))}
.about-hero h1{max-width:820px;margin:.7rem 0 1.25rem;font-size:clamp(3.2rem,6.5vw,6.8rem);line-height:.94;letter-spacing:-.045em;color:inherit}
.about-hero__content>p{max-width:740px;font-size:clamp(1.05rem,1.5vw,1.3rem);line-height:1.65;color:rgba(255,255,255,.88)}
.about-hero__support{font-size:.95rem!important;color:rgba(255,255,255,.68)!important}
.about-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:2rem}
.about-actions .btn-ghost{border-color:rgba(255,255,255,.48);color:var(--white)}
.about-section-heading{max-width:850px;margin-bottom:clamp(2.5rem,5vw,4.5rem)}
.about-section-heading h2{margin:.75rem 0 1rem;font-size:clamp(2.4rem,4.4vw,4.6rem);line-height:1.03;letter-spacing:-.035em}
.about-section-heading p{max-width:720px;font-size:1.08rem;line-height:1.75;color:var(--text-light)}
.about-story__grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.75fr);gap:clamp(3rem,7vw,7rem);align-items:center}
.about-story__media{min-height:580px;overflow:hidden}.about-story__media img{width:100%;height:100%;min-height:580px;object-fit:cover}
.about-story__copy h2{font-size:clamp(2.5rem,4.5vw,4.8rem);line-height:1.02;margin:.8rem 0 1.5rem}.about-story__copy p{font-size:1.08rem;line-height:1.82;color:var(--text-light)}
.about-journey{background:var(--cream)}
.about-journey__line{display:grid;grid-template-columns:repeat(4,1fr);position:relative;gap:clamp(1.5rem,3vw,3.5rem)}
.about-journey__line::before{content:"";position:absolute;left:0;right:0;top:1.7rem;height:1px;background:var(--border)}
.about-journey__item{position:relative;padding-top:4rem}.about-journey__item::before{content:"";position:absolute;top:1.38rem;left:0;width:.7rem;height:.7rem;border-radius:50%;background:var(--accent);box-shadow:0 0 0 7px var(--cream)}
.about-journey__year{position:absolute;top:0;left:0;font:600 .85rem/1 var(--font-sans);letter-spacing:.14em;color:var(--accent)}
.about-journey__item h3{margin:0 0 .8rem;font-size:1.35rem}.about-journey__item p{line-height:1.7;color:var(--text-light)}
.about-work__grid{display:grid;grid-template-columns:repeat(2,1fr);counter-reset:capability;border-top:1px solid var(--border)}
.about-work__item{counter-increment:capability;display:grid;grid-template-columns:4rem 1fr;gap:1rem;padding:2rem 2rem 2rem 0;border-bottom:1px solid var(--border)}
.about-work__item:nth-child(odd){border-right:1px solid var(--border)}.about-work__item:nth-child(even){padding-left:2rem}
.about-work__item::before{content:"0" counter(capability);font:500 .78rem/1 var(--font-sans);letter-spacing:.12em;color:var(--accent);padding-top:.4rem}
.about-work__item h3{margin:0 0 .6rem;font-size:1.4rem}.about-work__item p{margin:0;line-height:1.7;color:var(--text-light)}
.about-audience{background:#171411;color:var(--white)}.about-audience .about-section-heading p{color:rgba(255,255,255,.67)}
.about-audience__people{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.16)}
.about-audience__person{padding:1.7rem;background:#171411;font-size:1.05rem;line-height:1.45}.about-audience__spaces{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:2.5rem}.about-audience__spaces span{padding:.7rem 1rem;border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.76);font-size:.9rem}
.about-presence__grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.about-presence__item{padding:2.2rem clamp(1.25rem,3vw,3rem);border-right:1px solid var(--border)}.about-presence__item:first-child{padding-left:0}.about-presence__item:last-child{border-right:0}.about-presence__item h3{margin:0 0 .8rem;font-size:1.55rem}.about-presence__item p{line-height:1.72;color:var(--text-light)}
.about-why{background:var(--cream)}.about-why__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.5rem,3vw,3rem)}.about-why__item{padding-top:1.5rem;border-top:2px solid var(--accent)}.about-why__item h3{font-size:1.25rem;margin:0 0 .8rem}.about-why__item p{line-height:1.7;color:var(--text-light)}
.about-journey__line--five{grid-template-columns:repeat(5,1fr)}
.about-ecosystem__grid,.about-value__grid,.about-cases__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.about-ecosystem__item,.about-case{padding:clamp(1.6rem,3vw,2.5rem);border:1px solid var(--border);background:var(--white)}
.about-ecosystem__item h3,.about-case h3{margin:0 0 .6rem;font-size:1.35rem}.about-ecosystem__item strong{display:block;margin-bottom:1rem;color:var(--accent)}
.about-ecosystem__item p,.about-case p{margin:0;line-height:1.72;color:var(--text-light)}
.about-ecosystem__link{display:block;color:inherit;text-decoration:none;transition:border-color var(--t-fast),box-shadow var(--t-fast),transform var(--t-fast)}
.about-ecosystem__link:hover{border-color:var(--accent);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.about-ecosystem__link:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.about-ecosystem__cta{display:inline-block;margin-top:1.35rem;color:var(--accent);font-size:.76rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}
.about-value{background:#171411;color:var(--white)}.about-value .about-section-heading p{color:rgba(255,255,255,.67)}
.about-value__item{padding:1.8rem;border:1px solid rgba(255,255,255,.16)}.about-value__item h3{margin:0 0 .75rem;color:var(--white)}.about-value__item p{margin:0;line-height:1.7;color:rgba(255,255,255,.67)}
.about-cases .about-actions{margin-top:2rem}.about-vision__grid{display:grid;grid-template-columns:minmax(300px,.75fr) minmax(0,1fr);gap:clamp(3rem,7vw,7rem);align-items:center}
.about-vision h2{font-size:clamp(2.5rem,4.5vw,4.8rem);line-height:1.02;margin:.8rem 0 1.5rem}.about-vision p{font-size:1.08rem;line-height:1.82;color:var(--text-light)}.about-vision strong,.about-vision span{display:block}.about-vision strong{margin-top:2rem}.about-vision span{margin-top:.35rem;color:var(--text-light)}
.about-closing{position:relative;background:#171411;color:var(--white);text-align:center}.about-closing__inner{max-width:860px;margin:auto}.about-closing h2{font-size:clamp(2.7rem,5.5vw,5.6rem);line-height:1.02;margin:.7rem 0 1.4rem}.about-closing p{max-width:670px;margin:0 auto 2rem;color:rgba(255,255,255,.7);font-size:1.08rem;line-height:1.75}
@media(max-width:1024px){.about-story__grid{grid-template-columns:1fr 1fr;gap:3rem}.about-audience__people,.about-why__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.about-hero{min-height:720px}.about-hero__overlay{background:linear-gradient(0deg,rgba(16,12,9,.9) 0%,rgba(16,12,9,.48) 75%,rgba(16,12,9,.25) 100%)}.about-hero__content{padding-top:9rem}.about-story__grid{grid-template-columns:1fr}.about-story__media,.about-story__media img{min-height:420px}.about-story__copy{order:-1}.about-journey__line{grid-template-columns:1fr;gap:0;padding-left:1.2rem}.about-journey__line::before{left:0;right:auto;top:0;bottom:0;width:1px;height:auto}.about-journey__item{padding:0 0 2.8rem 2rem}.about-journey__item::before{top:.2rem;left:-1.55rem;box-shadow:0 0 0 6px var(--cream)}.about-journey__year{position:static;display:block;margin-bottom:.7rem}.about-work__grid{grid-template-columns:1fr}.about-work__item,.about-work__item:nth-child(even){padding:1.6rem 0;grid-template-columns:3rem 1fr;border-right:0}.about-presence__grid{grid-template-columns:1fr}.about-presence__item,.about-presence__item:first-child{padding:1.8rem 0;border-right:0;border-bottom:1px solid var(--border)}.about-presence__item:last-child{border-bottom:0}}
@media(max-width:480px){.about-page section:not(.about-hero){padding:4.5rem 0}.about-hero{min-height:680px}.about-hero h1{font-size:clamp(2.8rem,14vw,4.2rem)}.about-actions{flex-direction:column}.about-actions .btn{width:100%;justify-content:center}.about-audience__people,.about-why__grid{grid-template-columns:1fr}.about-audience__person{padding:1.3rem}.about-story__media,.about-story__media img{min-height:340px}}
@media(max-width:1024px){.about-journey__line--five{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.about-journey__line--five,.about-ecosystem__grid,.about-value__grid,.about-cases__grid,.about-vision__grid{grid-template-columns:1fr}.about-vision__grid .about-story__media{max-height:520px}}

/* Home positioning: concise strengths followed by space-led solutions. */
.home-positioning{background:var(--white)}
.home-strengths{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.home-strength{padding:2rem clamp(1.2rem,2.5vw,2.5rem);border-right:1px solid var(--border)}.home-strength:first-child{padding-left:0}.home-strength:last-child{border-right:0}
.home-strength__mark{display:block;width:2rem;height:2px;background:var(--accent);margin-bottom:1.5rem}.home-strength h3{font-size:1.25rem;margin:0 0 .7rem}.home-strength p{font-size:.95rem;line-height:1.7;color:var(--text-light)}
.home-solutions-heading{display:flex;justify-content:space-between;align-items:end;gap:2rem;margin:clamp(5rem,8vw,8rem) 0 2.5rem}.home-solutions-heading h2{max-width:690px;margin:0;font-size:clamp(2.2rem,4vw,4rem);line-height:1.05}
.home-solutions{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--border);border-left:1px solid var(--border)}
.home-solution{min-height:190px;padding:2rem;border-right:1px solid var(--border);border-bottom:1px solid var(--border);display:flex;flex-direction:column;justify-content:space-between}.home-solution svg{width:2.2rem;height:2.2rem;fill:none;stroke:var(--accent);stroke-width:1.35}.home-solution h3{margin:2.5rem 0 0;font-size:1.25rem}
@media(max-width:900px){.home-strengths{grid-template-columns:repeat(2,1fr)}.home-strength{border-bottom:1px solid var(--border)}.home-strength:nth-child(2){border-right:0}.home-strength:nth-child(3){padding-left:0;border-bottom:0}.home-strength:nth-child(4){border-bottom:0}.home-solutions{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.home-strengths,.home-solutions{grid-template-columns:1fr}.home-strength,.home-strength:first-child,.home-strength:nth-child(3){padding:1.5rem 0;border-right:0;border-bottom:1px solid var(--border)}.home-strength:last-child{border-bottom:0}.home-solutions-heading{display:block}.home-solutions-heading .eyebrow{display:block;margin-bottom:1rem}.home-solution{min-height:150px}}

@media(max-width:768px){
  .about-hero__content{flex:0 0 100vw;width:100vw;max-width:100vw;min-width:0;margin-left:0}
  .about-hero h1,.about-hero__content>p{width:calc(100vw - (2 * var(--gutter)));max-width:calc(100vw - (2 * var(--gutter)));overflow-wrap:anywhere;word-break:break-word}
}

@media (max-width: 768px) {
  .floating-cta { display: none; }
}
