/* YUHAN CRAFT - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ============================================
   Theme CSS (from style.css)
   ============================================ */
:root {
    --color-bg: #F7F4EE; --color-bg-light: #FDFCFA; --color-bg-card: #FFFFFF;
    --color-bg-alt: #F0EBE1; --color-bg-warm: #EDE8DC;
    --color-text: #57534E; --color-text-light: #78716C; --color-text-muted: #A8A29E;
    --color-heading: #1C1917;
    --color-btn: #1C1917; --color-btn-hover: #0C0A09;
    --color-btn-light: rgba(28, 25, 23, 0.05); --color-btn-border: rgba(28, 25, 23, 0.14);
    --color-accent: #B8860B; --color-accent-light: rgba(184, 134, 11, 0.10);
    --color-border: #E7E0D5; --color-border-light: #F0EBE1;
    --color-success: #059669; --color-white: #FFFFFF;
    --shadow-xs: 0 1px 3px rgba(28,25,23,0.03); --shadow-sm: 0 2px 8px rgba(28,25,23,0.05);
    --shadow-md: 0 4px 20px rgba(28,25,23,0.06); --shadow-lg: 0 8px 36px rgba(28,25,23,0.08);
    --shadow-xl: 0 16px 50px rgba(28,25,23,0.09), 0 6px 20px rgba(184,134,11,0.05);
    --radius-xs: 4px; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --radius-full: 50%;
    --transition-fast: 0.2s ease; --transition-base: 0.3s ease;
    --font-primary: "Microsoft YaHei","微软雅黑","PingFang SC","Hiragino Sans GB",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    --font-serif: "Playfair Display","Noto Serif SC","Source Han Serif SC","STSong",Georgia,"Times New Roman",serif;
    --container-width: 1200px; --header-height: 80px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); color: var(--color-text); background: var(--color-bg); background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23B8860B' stroke-opacity='.012' stroke-width='.5' fill='none'/%3E%3Ccircle cx='15' cy='15' r='.4' fill='%23B8860B' fill-opacity='.02'/%3E%3Ccircle cx='45' cy='45' r='.4' fill='%23B8860B' fill-opacity='.02'/%3E%3C/svg%3E"); line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-btn); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-btn-hover); }
.btn, a, button, .faq-question, .pf-tab, .mobile-menu-btn, .carousel-btn, .carousel-dots .dot, .pf-pg-btn, .blog-filter-links a { touch-action: manipulation; -webkit-tap-highlight-color: rgba(184,134,11,0.1); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--color-heading); font-weight: 700; line-height: 1.4; margin-bottom: 0.6em; letter-spacing: 0.005em; }
h1 { font-size: 2.5rem; font-size: clamp(2rem,5vw,3rem); } h2 { font-size: 1.9rem; font-size: clamp(1.6rem,4vw,2.2rem); } h3 { font-size: 1.35rem; font-size: clamp(1.2rem,3vw,1.5rem); }
p { margin-bottom: 1.2em; line-height: 1.9; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 40px 0; } .section-sm { padding: 24px 0; } .section-tight-top { padding-top: 8px; } .section-alt { background: var(--color-bg-light); position: relative; } .section-alt::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.08) 50%, transparent 90%); pointer-events: none; } .section-warm { background: var(--color-bg-warm); background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='.6' fill='%23B8860B' fill-opacity='.025'/%3E%3Ccircle cx='0' cy='0' r='.4' fill='%23B8860B' fill-opacity='.018'/%3E%3C/svg%3E"); position: relative; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; text-align: center; opacity: 0.55; font-size: 0.85rem; color: var(--color-text-light); letter-spacing: 0.03em; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 38px; background: var(--color-btn); color: var(--color-white); border: 2px solid var(--color-btn); border-radius: var(--radius-xl); font-size: 1rem; font-weight: 600; font-family: var(--font-primary); cursor: pointer; transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); text-align: center; letter-spacing: 0.04em; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); transition: left 0.5s ease; }
.btn:hover::after { left: 100%; }
.btn:hover { background: var(--color-btn-hover); border-color: var(--color-btn-hover); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(28,25,23,0.2); }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; } .btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-outline { background: transparent; color: var(--color-btn); } .btn-outline:hover { background: var(--color-btn); color: var(--color-white); }
.btn-block { display: flex; width: 100%; }
.text-center { text-align: center; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(247,244,238,0.92); -webkit-backdrop-filter: blur(24px) saturate(180%); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid rgba(184,134,11,0.08); height: var(--header-height); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.site-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.35) 35%, rgba(218,165,32,0.5) 50%, rgba(184,134,11,0.35) 65%, transparent 90%); pointer-events: none; }
.site-header::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 5%, rgba(184,134,11,0.15) 30%, rgba(184,134,11,0.25) 50%, rgba(184,134,11,0.15) 70%, transparent 95%); pointer-events: none; }
.site-header.scrolled { background: rgba(247,244,238,0.97); box-shadow: 0 1px 24px rgba(28,25,23,0.06), 0 1px 4px rgba(184,134,11,0.04); height: 68px; border-bottom-color: rgba(184,134,11,0.12); }
.site-header.scrolled .brand-logo { width: 50px; height: 50px; font-size: 1.35rem; }
.header-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 100%; }

/* Branding */
.site-branding { display: flex; align-items: center; gap: 16px; flex-shrink: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.brand-logo { width: 60px; height: 60px; background: linear-gradient(145deg,#2C2825 0%,#1C1917 40%,#3D3632 85%,#2C2825 100%); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem; font-weight: 700; box-shadow: 0 0 0 2.5px rgba(184,134,11,0.18), 0 0 0 5px rgba(184,134,11,0.05), 0 4px 18px rgba(28,25,23,0.22); transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; }
.brand-logo::after { content: ''; position: absolute; top: 2px; right: 2px; bottom: 2px; left: 2px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%); pointer-events: none; }
.brand-logo a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; position: relative; z-index: 1; }
.brand-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.brand-logo-text { color: #E8DDD0; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.1; text-align: center; display: block; position: relative; z-index: 1; }
.site-branding:hover .brand-logo { transform: scale(1.08) rotate(-3deg); animation: logoRingPulse 0.6s ease-out forwards; }
.site-branding:active .brand-logo { transform: scale(1.02) rotate(-1deg); box-shadow: 0 0 0 3px rgba(184,134,11,0.5), 0 0 0 7px rgba(184,134,11,0.12), 0 4px 12px rgba(28,25,23,0.2); transition-duration: 0.12s; animation: none; }
@keyframes logoRingPulse { 0%{ box-shadow: 0 0 0 2.5px rgba(184,134,11,0.18), 0 0 0 5px rgba(184,134,11,0.05), 0 4px 18px rgba(28,25,23,0.22); } 100%{ box-shadow: 0 0 0 3px rgba(184,134,11,0.32), 0 0 0 9px rgba(184,134,11,0), 0 8px 28px rgba(28,25,23,0.28); } }

/* WordPress Admin Bar Compatibility */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .main-navigation { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } body.admin-bar .main-navigation { top: 46px; } }

/* Brand Text */
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.site-title { font-size: 1.55rem; font-weight: 800; color: var(--color-heading); margin: 0; line-height: 1.2; letter-spacing: 0.06em; }
.site-title a { color: inherit; transition: color 0.3s ease; background: linear-gradient(135deg, var(--color-heading) 0%, #3D3632 50%, var(--color-heading) 100%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.site-branding:hover .site-title a { background-position: 100% 0; }
.site-description { font-size: 0.8rem; color: var(--color-accent); line-height: 1.4; letter-spacing: 0.14em; font-weight: 500; opacity: 0.85; }

/* Navigation */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-navigation a { display: block; padding: 8px 16px; color: var(--color-text); font-size: 0.92rem; border-radius: var(--radius-sm); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); letter-spacing: 0.05em; position: relative; font-weight: 500; }
.main-navigation a::after { content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.3)); border-radius: 1px; transition: width 0.35s cubic-bezier(0.4,0,0.2,1), left 0.35s cubic-bezier(0.4,0,0.2,1); }
.main-navigation a:hover { color: var(--color-heading); background: rgba(184,134,11,0.04); }
.main-navigation a:hover::after { width: 60%; left: 20%; }
.main-navigation a:active { transform: scale(0.95); background: rgba(184,134,11,0.08); transition-duration: 0.1s; }
.main-navigation .current-menu-item > a, .main-navigation .current_page_item > a, .main-navigation a.active { color: var(--color-accent); font-weight: 600; }
.main-navigation .current-menu-item > a::after, .main-navigation .current_page_item > a::after, .main-navigation a.active::after { width: 60%; left: 20%; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.5)); }
/* Dropdown */
.main-navigation .sub-menu { position: absolute; top: calc(100% + 8px); left: 50%; -webkit-transform: translateX(-50%) translateY(6px); transform: translateX(-50%) translateY(6px); background: rgba(255,255,255,0.97); -webkit-backdrop-filter: blur(28px) saturate(200%); backdrop-filter: blur(28px) saturate(200%); border-radius: 16px; padding: 6px; min-width: 120px; box-shadow: 0 16px 48px rgba(28,25,23,0.12), 0 4px 14px rgba(28,25,23,0.04), 0 0 0 1px rgba(184,134,11,0.06); opacity: 0; visibility: hidden; -webkit-transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), visibility 0.25s, -webkit-transform 0.25s cubic-bezier(0.4,0,0.2,1); transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), visibility 0.25s, transform 0.25s cubic-bezier(0.4,0,0.2,1); z-index: 100; list-style: none; margin: 0; flex-direction: column; align-items: stretch; gap: 0; }
/* Pointer arrow */
.main-navigation .sub-menu::before { content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 10px; height: 10px; background: rgba(255,255,255,0.97); border-top: 1px solid rgba(184,134,11,0.06); border-left: 1px solid rgba(184,134,11,0.06); border-radius: 2px 0 0 0; box-shadow: -2px -2px 4px rgba(28,25,23,0.02); }
/* Hover bridge to prevent gap flicker */
.main-navigation .sub-menu::after { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.main-navigation .menu-item-has-children { position: relative; }
/* Parent highlight on hover */
.main-navigation .menu-item-has-children:hover > a { color: var(--color-accent); background: rgba(184,134,11,0.06); }
.main-navigation .menu-item-has-children:hover > a::after { width: 60%; left: 20%; }
.main-navigation .menu-item-has-children:hover .sub-menu, .main-navigation .menu-item-has-children:focus-within .sub-menu { opacity: 1; visibility: visible; -webkit-transform: translateX(-50%) translateY(0); transform: translateX(-50%) translateY(0); }
/* Dropdown items with stagger */
.main-navigation .sub-menu li { margin: 0; opacity: 0; transform: translateY(6px); transition: opacity 0.22s ease, transform 0.22s ease; }
.main-navigation .sub-menu li + li { border-top: 1px solid rgba(184,134,11,0.04); margin: 0 8px; }
.main-navigation .menu-item-has-children:hover .sub-menu li, .main-navigation .menu-item-has-children:focus-within .sub-menu li { opacity: 1; transform: translateY(0); }
.main-navigation .menu-item-has-children:hover .sub-menu li:nth-child(1), .main-navigation .menu-item-has-children:focus-within .sub-menu li:nth-child(1) { transition-delay: 0.04s; }
.main-navigation .menu-item-has-children:hover .sub-menu li:nth-child(2), .main-navigation .menu-item-has-children:focus-within .sub-menu li:nth-child(2) { transition-delay: 0.09s; }
.main-navigation .menu-item-has-children:hover .sub-menu li:nth-child(3), .main-navigation .menu-item-has-children:focus-within .sub-menu li:nth-child(3) { transition-delay: 0.14s; }
.main-navigation .sub-menu a { display: flex; align-items: center; justify-content: center; text-align: center; padding: 10px 22px; font-size: 0.88rem; color: var(--color-text); white-space: nowrap; -webkit-transition: all 0.25s cubic-bezier(0.4,0,0.2,1); transition: all 0.25s cubic-bezier(0.4,0,0.2,1); border-radius: 10px; letter-spacing: 0.05em; font-weight: 500; position: relative; }
.main-navigation .sub-menu a:hover { background: rgba(184,134,11,0.08); color: var(--color-accent); font-weight: 600; }
.main-navigation .sub-menu a:active { transform: scale(0.97); transition-duration: 0.08s; }
.main-navigation .sub-menu a::after { display: none; }
/* Desktop dropdown indicator */
.main-navigation .menu-item-has-children > a { padding-right: 24px; }
.main-navigation .menu-item-has-children > a .nav-arrow { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; opacity: 0.5; transition: all 0.25s ease; }
.main-navigation .menu-item-has-children:hover > a .nav-arrow { opacity: 0.9; transform: translateY(-50%) rotate(180deg); }
.main-navigation .nav-cta a { background: linear-gradient(135deg,#1C1917 0%,#2C2825 100%); color: var(--color-white); border-radius: var(--radius-xl); padding: 11px 30px; font-weight: 600; letter-spacing: 0.06em; box-shadow: 0 2px 12px rgba(28,25,23,0.16), 0 0 0 1px rgba(184,134,11,0.08), inset 0 1px 0 rgba(255,255,255,0.06); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.main-navigation .nav-cta a::after { display: none; }
.main-navigation .nav-cta a::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%); border-radius: inherit; pointer-events: none; transition: opacity 0.3s ease; }
.main-navigation .nav-cta a:hover { background: linear-gradient(135deg,#0C0A09 0%,#1C1917 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,25,23,0.24), 0 0 0 1px rgba(184,134,11,0.15), inset 0 1px 0 rgba(255,255,255,0.1); }
.main-navigation .nav-cta a:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(28,25,23,0.18), 0 0 0 1.5px rgba(184,134,11,0.25), inset 0 2px 4px rgba(0,0,0,0.15); transition-duration: 0.1s; }

/* Hero */
.hero { display: flex; align-items: center; position: relative; overflow: hidden; padding-top: calc(var(--header-height) + 20px); padding-bottom: 48px; background: var(--color-bg); }
.hero .container { width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: center; padding: 24px 0; }
.hero-content { position: relative; z-index: 2; max-width: 560px; padding: 20px 0; opacity: 1; visibility: visible; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(184,134,11,0.06) 100%); border: 1px solid rgba(184,134,11,0.18); border-radius: var(--radius-xl); font-size: 0.82rem; color: var(--color-accent); font-weight: 600; margin-bottom: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-title { font-size: 3rem; font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 800; line-height: 1.22; margin-bottom: 20px; color: var(--color-heading); letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.08rem; font-size: clamp(1rem,1.8vw,1.15rem); color: var(--color-text-light); margin-bottom: 24px; max-width: 480px; line-height: 1.9; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--color-border); }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-size: 1.7rem; font-weight: 800; color: var(--color-heading); line-height: 1.2; letter-spacing: -0.01em; position: relative; display: inline-block; }
.hero-stat-label { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 8px; letter-spacing: 0.03em; }
.hero-stat-number::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 24px; height: 2px; background: linear-gradient(90deg, #B8860B, rgba(184,134,11,0.2)); border-radius: 1px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 1; opacity: 1; visibility: visible; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 520px; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; box-shadow: 0 40px 100px rgba(28,25,23,0.12), 0 12px 40px rgba(28,25,23,0.06), inset 0 0 0 1px rgba(255,255,255,0.1); background: linear-gradient(135deg, #E8D5B5 0%, #D4C4A8 50%, #C9B896 100%); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual::before { content: ''; position: absolute; width: 110%; height: 110%; background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 50%, rgba(184,134,11,0.06) 100%); border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; z-index: -1; opacity: 0.6; }
.hero-image-wrapper::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border-radius: 28px; border: 1px solid rgba(255,255,255,0.2); pointer-events: none; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1' fill='none'/%3E%3C/svg%3E"); }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 26px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 1px; background: linear-gradient(90deg, rgba(184,134,11,0.35) 0%, rgba(218,165,32,0.22) 65%, rgba(218,165,32,0.08) 100%); z-index: 0; }
.process-step:not(:last-child)::before { content: ''; position: absolute; top: 20px; right: calc(-50% + 20px); width: 16px; height: 12px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpolyline points='1,1 15,6 1,11' fill='none' stroke='%23DAA520' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; background-position: center; z-index: 1; filter: drop-shadow(0 0 2px rgba(218,165,32,0.25)); }
.site-footer::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 30% 20%, rgba(184,134,11,0.02) 0%, transparent 60%), url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3h1v1H1zm2-2h1v1H3z' fill='%23ffffff' fill-opacity='0.012'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; }
.site-footer > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { -webkit-animation-duration: 0.01ms !important; animation-duration: 0.01ms !important; -webkit-transition-duration: 0.01ms !important; transition-duration: 0.01ms !important; } .animate-on-scroll { opacity: 1; transform: none; } .hero-visual::before { -webkit-animation: none; animation: none; } }
.hero-float-badge { position: absolute; bottom: 32px; left: -20px; background: rgba(255,255,255,0.82); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); padding: 14px 22px; border-radius: var(--radius-lg); box-shadow: 0 12px 40px rgba(28,25,23,0.10), 0 2px 8px rgba(28,25,23,0.05); display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--color-heading); z-index: 2; border: 1px solid rgba(184,134,11,0.12); }
.hero-float-badge .badge-stars { color: var(--color-accent); font-size: 0.85rem; letter-spacing: 1px; }
.hero-float-badge .badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-float-badge .badge-text small { font-size: 0.72rem; font-weight: 400; color: var(--color-text-muted); }
.hero-title .highlight {
    background: linear-gradient(135deg, #C9960F 0%, #E8B830 25%, #FFD700 50%, #E8B830 75%, #C9960F 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGoldShimmer 4s ease-in-out infinite;
    position: relative; display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(232,184,48,0.35));
    letter-spacing: 0.06em;
}
@keyframes heroGoldShimmer {
    0% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}
.hero-title .highlight::before {
    content: ''; position: absolute; top: -6px; left: -10px; right: -10px; bottom: -6px;
    background: radial-gradient(ellipse at 50% 80%, rgba(232,184,48,0.18) 0%, transparent 70%);
    z-index: -1; pointer-events: none; border-radius: 8px;
}
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 2px; left: -2px; right: -2px; height: 12px;
    background: linear-gradient(90deg, rgba(201,150,15,0.25) 0%, rgba(255,215,0,0.22) 50%, rgba(201,150,15,0.10) 100%);
    border-radius: 6px; z-index: -1;
    animation: heroUnderlineGlow 3s ease-in-out infinite;
}
@keyframes heroUnderlineGlow {
    0%,100% { opacity: 0.7; transform: scaleX(0.95); }
    50% { opacity: 1; transform: scaleX(1.02); }
}
.hero-sparkle {
    position: absolute; top: -8px; right: -18px; width: 18px; height: 18px;
    background: radial-gradient(circle, #F0C040 0%, rgba(240,192,64,0) 70%);
    border-radius: 50%; animation: heroSparkle 2.5s ease-in-out infinite;
    pointer-events: none;
}
.hero-sparkle::before {
    content: '✦'; position: absolute; top: -2px; left: 2px;
    font-size: 12px; color: #DAA520;
    animation: heroSparkleStar 2.5s ease-in-out infinite;
}
@keyframes heroSparkle {
    0%,100% { opacity: 0.3; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes heroSparkleStar {
    0%,100% { opacity: 0.4; transform: rotate(0deg) scale(0.8); }
    50% { opacity: 1; transform: rotate(180deg) scale(1.1); }
}
.hero-actions .btn:not(.btn-outline) { background: linear-gradient(135deg, #1C1917 0%, #2C2825 60%, #3D3632 100%); border-color: transparent; box-shadow: 0 4px 16px rgba(28,25,23,0.2), inset 0 1px 0 rgba(255,255,255,0.06); }
.hero-actions .btn:not(.btn-outline):hover { background: linear-gradient(135deg, #0C0A09 0%, #1C1917 60%, #2C2825 100%); box-shadow: 0 8px 32px rgba(28,25,23,0.3), 0 2px 8px rgba(184,134,11,0.15), inset 0 1px 0 rgba(255,255,255,0.08); }
.hero-visual::after { content: ''; position: absolute; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent), #D4A017); opacity: 0.08; top: 10%; right: 5%; animation: heroFloatDot 6s ease-in-out infinite; z-index: -1; }
@keyframes heroFloatDot { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-15px,20px) scale(1.3); } }
.hero-image-wrapper { animation: heroImageFloat 12s ease-in-out infinite; }
@keyframes heroImageFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }
.hero-float-badge { animation: heroBadgeFloat 7s ease-in-out infinite; }
@keyframes heroBadgeFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 30% 50%, rgba(184,134,11,0.04) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(28,25,23,0.02) 0%, transparent 50%); pointer-events: none; }
.hero-stat-number { background: linear-gradient(135deg, var(--color-heading), var(--color-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 24px; }
.section-label { display: inline-flex; align-items: center; gap: 14px; font-size: 0.72rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.28em; font-weight: 700; margin-bottom: 18px; position: relative; padding: 0 4px; }
.section-label::before, .section-label::after { content: ''; width: 28px; height: 1px; }
.section-label::before { background: linear-gradient(90deg, transparent, var(--color-accent)); }
.section-label::after { background: linear-gradient(90deg, var(--color-accent), transparent); }
.section-title { font-size: 2rem; font-size: clamp(1.7rem,4vw,2.4rem); margin-bottom: 16px; font-weight: 800; letter-spacing: 0.03em; }
.section-desc { font-size: 1.02rem; color: var(--color-text-light); max-width: 600px; margin: 0 auto; line-height: 1.85; }
.section-header::after { content: ''; display: block; width: 32px; height: 2.5px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.18)); margin: 18px auto 0; border-radius: 2px; }

/* Feature Cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); border: 1.5px solid var(--color-border-light); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px; background: linear-gradient(90deg, var(--color-btn), var(--color-accent)); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transition: -webkit-transform 0.35s ease; transition: transform 0.35s ease; -webkit-transform-origin: center; transform-origin: center; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.04); border-color: rgba(184,134,11,0.12); }
.feature-icon { width: 68px; height: 68px; margin: 0 auto 22px; background: linear-gradient(145deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; transition: all var(--transition-base); box-shadow: 0 2px 8px rgba(28,25,23,0.04), inset 0 1px 0 rgba(255,255,255,0.6); }
.feature-card:hover .feature-icon { background: linear-gradient(145deg, var(--color-btn) 0%, #2a2725 100%); transform: scale(1.06) translateY(-2px); box-shadow: 0 8px 24px rgba(28,25,23,0.15), inset 0 1px 0 rgba(255,255,255,0.1); border-radius: 16px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 10px; letter-spacing: 0.02em; }
.feature-card p { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.75; margin: 0; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { text-align: center; position: relative; padding: 0 12px; }
.process-number { width: 52px; height: 52px; background: var(--color-btn); color: white; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700; margin: 0 auto 22px; box-shadow: 0 4px 16px rgba(28,25,23,0.14), 0 0 0 3px rgba(184,134,11,0.08); letter-spacing: 0.02em; }
.process-step h3 { font-size: 1.08rem; margin-bottom: 10px; letter-spacing: 0.02em; }
.process-step p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.75; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.portfolio-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 16px rgba(28,25,23,0.06); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); background: #1C1917; text-decoration: none; color: inherit; display: block; }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(28,25,23,0.10), 0 4px 12px rgba(28,25,23,0.04), 0 0 0 1px rgba(218,165,32,0.15); }
.portfolio-item::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent); transition: none; pointer-events: none; z-index: 3; }
.portfolio-item:hover::after { left: 100%; transition: left 0.7s ease; }
.portfolio-placeholder { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); font-size: 0.9rem; letter-spacing: 0.02em; position: relative; overflow: hidden; }
.portfolio-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.portfolio-item:hover .portfolio-placeholder img { transform: scale(1.06); }
.portfolio-info { padding: 16px 20px; background: linear-gradient(to bottom, rgba(28,25,23,0.95), rgba(28,25,23,0.98)); border-top: 1px solid rgba(184,134,11,0.12); position: relative; }
.portfolio-info::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.2) 50%, transparent 90%); pointer-events: none; }
.portfolio-item:hover .portfolio-info::before { background: linear-gradient(90deg, transparent 10%, rgba(218,165,32,0.45) 50%, transparent 90%); transition: background 0.4s ease; }
.portfolio-info h4 { color: #E8DDD0; font-size: 0.95rem; margin: 0; letter-spacing: 0.03em; font-weight: 600; }
.portfolio-info .portfolio-meta { display: flex; gap: 10px; margin-top: 5px; flex-wrap: wrap; }
.portfolio-info .portfolio-meta span { color: rgba(232,221,208,0.55); font-size: 0.78rem; letter-spacing: 0.04em; display: flex; align-items: center; gap: 3px; }
.portfolio-info .portfolio-meta span:first-child::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: #DAA520; margin-right: 2px; opacity: 0.6; }

/* Testimonials */
.testimonial-photo { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 8px; position: relative; }
.testimonial-photo-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
.testimonial-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 14px; background: linear-gradient(transparent, rgba(0,0,0,0.55)); color: white; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--color-bg-card); background-image: linear-gradient(180deg, rgba(247,244,238,0.3) 0%, rgba(255,255,255,0) 40%); border-radius: var(--radius-lg); padding: 16px; border: 1.5px solid var(--color-border-light); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; display: flex; flex-direction: column; }
.testimonial-card:hover { box-shadow: 0 16px 48px rgba(28,25,23,0.07), 0 4px 12px rgba(28,25,23,0.03); transform: translateY(-4px); border-color: rgba(184,134,11,0.15); }
.testimonial-quote { font-size: 2rem; color: var(--color-accent); line-height: 1; margin-bottom: 0; font-family: Georgia, serif; opacity: 0.3; -webkit-user-select: none; user-select: none; display: inline-block; position: relative; }
.testimonial-quote::after { content: ''; position: absolute; bottom: 4px; right: -12px; width: 10px; height: 2px; background: var(--color-accent-light); border-radius: 1px; }
.testimonial-text { font-size: 0.92rem; line-height: 1.85; color: var(--color-text); margin-bottom: 2px; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 4px; border-top: 1px solid var(--color-border-light); flex-shrink: 0; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--color-accent); flex-shrink: 0; font-weight: 600; line-height: 1; overflow: hidden; }
img.testimonial-avatar { object-fit: cover; }
.testimonial-info { min-width: 0; flex: 1; }
.testimonial-info h4 { font-size: 0.95rem; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testimonial-info p { font-size: 0.8rem; color: var(--color-text-light); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testimonial-stars { color: var(--color-accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.testimonials-more-wrap { text-align: center; margin-top: 28px; }
.btn-testimonials-more { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; background: transparent; color: var(--color-btn); border: 2px solid var(--color-btn-border); border-radius: var(--radius-xl); font-size: 0.95rem; font-weight: 600; font-family: var(--font-primary); cursor: pointer; transition: all var(--transition-base); letter-spacing: 0.02em; }
.btn-testimonials-more:hover { background: var(--color-btn); color: var(--color-white); border-color: var(--color-btn); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-testimonials-more svg { transition: transform var(--transition-fast); }
.btn-testimonials-more:hover svg { transform: translateY(2px); }

/* Friendly Links */
.friendly-links-section { padding: 28px 0; background: var(--color-bg-alt); border-top: 1px solid var(--color-border-light); }
.friendly-links-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; }
.friendly-links-label { font-size: 0.85rem; color: var(--color-text-light); font-weight: 600; white-space: nowrap; }
.friendly-links-list { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 18px; }
.friendly-links-list a { font-size: 0.82rem; color: var(--color-text-muted); transition: color 0.2s ease; }
.friendly-links-list a:hover { color: var(--color-accent); }
.friendly-links-sep { color: var(--color-border); font-size: 0.7rem; -webkit-user-select: none; user-select: none; }

/* FAQ */
.faq-list { max-width: 840px; margin: 0 auto; counter-reset: faq-counter; }
.faq-item { background: var(--color-bg-card); border-radius: var(--radius-md); margin-bottom: 16px; border: 1px solid var(--color-border-light); overflow: hidden; position: relative; -webkit-transition: border-color 0.3s ease, box-shadow 0.3s ease; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-item::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #DAA520, #B8860B); border-radius: 0 2px 2px 0; opacity: 0; -webkit-transition: opacity 0.35s ease; transition: opacity 0.35s ease; z-index: 1; }
.faq-item:hover { border-color: var(--color-btn-border); box-shadow: 0 4px 20px rgba(28,25,23,0.05); }
.faq-item.active { border-color: rgba(184,134,11,0.2); box-shadow: 0 4px 24px rgba(184,134,11,0.07), 0 1px 4px rgba(28,25,23,0.04); }
.faq-item.active::before { opacity: 1; }
.faq-question { padding: 24px 28px 24px 70px; cursor: pointer; display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-align-items: center; align-items: center; gap: 16px; font-weight: 600; font-size: 1.04rem; line-height: 1.55; color: var(--color-heading); -webkit-transition: color 0.25s ease, background-color 0.25s ease; transition: color 0.25s ease, background-color 0.25s ease; -webkit-user-select: none; user-select: none; position: relative; border: 0; border-bottom: 0; outline: none; background: transparent; width: 100%; text-align: left; font-family: inherit; margin: 0; -webkit-appearance: none; appearance: none; }
.faq-question::before { counter-increment: faq-counter; content: counter(faq-counter, decimal-leading-zero); position: absolute; left: 22px; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(145deg, #2C2825 0%, #1C1917 100%); color: #E8DDD0; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; box-shadow: 0 0 0 1px rgba(184,134,11,0.15), 0 3px 8px rgba(28,25,23,0.15); -webkit-transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease; transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease; }
.faq-item.active .faq-question::before { background: linear-gradient(145deg, #C49412 0%, #DAA520 100%); color: white; box-shadow: 0 0 0 1px rgba(184,134,11,0.35), 0 3px 10px rgba(184,134,11,0.22); }
.faq-question:hover { color: var(--color-btn); background-color: rgba(184,134,11,0.02); }
.faq-icon { width: 30px; height: 30px; flex-shrink: 0; background: var(--color-bg-alt); border-radius: var(--radius-full); display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.35s ease; transition: background-color 0.3s ease, color 0.3s ease, transform 0.35s ease; font-size: 0.82rem; color: var(--color-text-light); }
.faq-item.active .faq-icon { background: var(--color-accent); color: white; -webkit-transform: rotate(180deg); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; -webkit-transition: max-height 0.45s ease; transition: max-height 0.45s ease; border: 0; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 4px 28px 28px 70px; font-size: 0.96rem; line-height: 1.9; color: var(--color-text-light); border: 0; border-top: 1px solid transparent; background-image: linear-gradient(90deg, rgba(184,134,11,0.25) 0%, rgba(184,134,11,0.06) 60%, transparent 100%); background-size: 100% 1px; background-repeat: no-repeat; background-position: 70px top; }
.faq-hero-image { padding: 28px 0 0; }
.faq-hero-image img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: 0 12px 40px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.04); transition: transform 0.5s ease, box-shadow 0.5s ease; }
.faq-hero-image img:hover { transform: scale(1.015); box-shadow: 0 16px 48px rgba(28,25,23,0.12), 0 6px 20px rgba(28,25,23,0.06); }
.faq-cta-section { text-align: center; background: linear-gradient(160deg, #FBF6ED 0%, #F5EFE3 60%, #EDE5D5 100%); padding: 56px 0; position: relative; overflow: hidden; }
.faq-cta-section::after { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%); pointer-events: none; }
.faq-cta-section .container { position: relative; z-index: 1; }
.faq-cta-section .section-cta-title { font-size: 2rem; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--color-heading); letter-spacing: 0.03em; margin-bottom: 14px; }
.faq-cta-section .section-cta-title::after { content: ''; display: block; width: 48px; height: 2px; background: linear-gradient(90deg, transparent, #B8860B, transparent); margin: 16px auto 0; border-radius: 1px; }
.faq-cta-section .section-cta-desc { font-size: 1.02rem; color: var(--color-text-light); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.faq-cta-section .btn { background: var(--color-btn); color: white; border-color: var(--color-btn); box-shadow: 0 4px 16px rgba(28,25,23,0.12); }
.faq-cta-section .btn:hover { background: var(--color-btn-hover); border-color: var(--color-btn-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,25,23,0.18); }
.faq-cta-section .btn-outline { background: transparent; color: var(--color-btn); border: 2px solid var(--color-btn); box-shadow: none; }
.faq-cta-section .btn-outline:hover { background: var(--color-btn); color: white; }
@media (max-width: 768px) { .faq-cta-section { padding: 40px 0; } }
.contact-hero-image { padding: 16px 0 0; }
.contact-hero-image img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: 0 12px 40px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.04); transition: transform 0.5s ease, box-shadow 0.5s ease; }
.contact-hero-image img:hover { transform: scale(1.015); box-shadow: 0 16px 48px rgba(28,25,23,0.12), 0 6px 20px rgba(28,25,23,0.06); }
.contact-related-section { text-align: center; background: linear-gradient(160deg, #FBF6ED 0%, #F5EFE3 60%, #EDE5D5 100%); padding: 56px 0; position: relative; overflow: hidden; }
.contact-related-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 5%, #B8860B 30%, #DAA520 50%, #B8860B 70%, transparent 95%); }
.contact-related-section::after { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%); pointer-events: none; }
.contact-related-section .container { position: relative; z-index: 1; }
.contact-related-section .section-cta-title { font-size: 2rem; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--color-heading); letter-spacing: 0.03em; margin-bottom: 14px; }
.contact-related-section .section-cta-title::after { content: ''; display: block; width: 48px; height: 2px; background: linear-gradient(90deg, transparent, #B8860B, transparent); margin: 16px auto 0; border-radius: 1px; }
.contact-related-section .section-cta-actions { margin-top: 32px; }
.contact-related-section .btn-outline { background: transparent; color: var(--color-btn); border: 2px solid var(--color-btn); box-shadow: none; }
.contact-related-section .btn-outline:hover { background: var(--color-btn); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,25,23,0.18); }
@media (max-width: 768px) { .contact-related-section { padding: 40px 0; } }

/* Blog Cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: var(--color-bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-light); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; }
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.2)); z-index: 1; -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); -webkit-transform-origin: left; transform-origin: left; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.04); border-color: transparent; }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border-light)); display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; align-items: center; gap: 16px; font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 10px; }
.blog-card-title { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.5; }
.blog-card-title a { color: var(--color-heading); }
.blog-card-title a:hover { color: var(--color-btn); }
.blog-card-excerpt { font-size: 0.92rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { font-size: 0.9rem; font-weight: 500; color: var(--color-btn); display: inline-flex; align-items: center; gap: 6px; }
.blog-card-link:hover { color: var(--color-accent); gap: 10px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: var(--radius-sm); font-size: 0.92rem; border: 1px solid var(--color-border); color: var(--color-text); transition: all var(--transition-fast); }
.pagination a:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(184,134,11,0.04); }
.pagination .current { background: linear-gradient(135deg,#1C1917 0%,#2C2825 100%); color: white; border-color: transparent; font-weight: 600; }
@media (max-width: 768px) { .pagination { margin-top: 24px; gap: 6px; } .pagination a, .pagination span { min-width: 44px; height: 44px; font-size: 0.85rem; } }
@media (max-width: 480px) { .pagination { margin-top: 20px; } }

/* Blog Banner Carousel */
.blog-banner-carousel-wrap { padding: 20px 0 0; }
.blog-banner-carousel { position: relative; overflow: hidden; margin: 0 auto; max-width: 100%; border-radius: var(--radius-lg); }
.blog-banner-carousel .carousel-track { display: flex; -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.blog-banner-carousel .carousel-slide { min-width: 100%; position: relative; overflow: hidden; }
.blog-banner-carousel .carousel-slide img { width: 100%; height: 320px; -o-object-fit: cover; object-fit: cover; display: block; }
.blog-banner-carousel .carousel-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 48px 32px; background: linear-gradient(to top, rgba(28,25,23,0.82) 0%, rgba(28,25,23,0.4) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; }
.blog-banner-carousel .carousel-overlay h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0 0 6px; text-shadow: 0 1px 6px rgba(0,0,0,0.3); letter-spacing: 0.04em; }
.blog-banner-carousel .carousel-overlay p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; text-shadow: 0 1px 4px rgba(0,0,0,0.2); max-width: 520px; line-height: 1.6; }
.blog-banner-carousel .carousel-btn { position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,0.15); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; z-index: 5; opacity: 0; }
.blog-banner-carousel:hover .carousel-btn { opacity: 1; }
.blog-banner-carousel .carousel-btn:hover { background: rgba(255,255,255,0.3); -webkit-transform: translateY(-50%) scale(1.08); transform: translateY(-50%) scale(1.08); }
.blog-banner-carousel .carousel-btn.prev { left: 16px; }
.blog-banner-carousel .carousel-btn.next { right: 16px; }
.blog-banner-carousel .carousel-dots { position: absolute; bottom: 14px; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.blog-banner-carousel .carousel-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; border: none; padding: 0; min-width: 0; }
.blog-banner-carousel .carousel-dots .dot.active { background: rgba(255,255,255,0.9); -webkit-transform: scale(1.2); transform: scale(1.2); }
.blog-breadcrumb { display: inline-flex; align-items: center; gap: 0; padding: 7px 18px; font-size: 0.82rem; letter-spacing: 0.04em; background: rgba(255,255,255,0.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); box-shadow: 0 1px 6px rgba(28,25,23,0.04); }
.blog-breadcrumb a { color: var(--color-text-light); text-decoration: none; -webkit-transition: color 0.25s ease; transition: color 0.25s ease; }
.blog-breadcrumb a:hover { color: var(--color-accent); }
.blog-breadcrumb .sep { margin: 0 10px; color: var(--color-accent); font-size: 0.72rem; opacity: 0.55; font-weight: 600; }
.blog-breadcrumb .current { color: var(--color-heading); font-weight: 600; }
.page-crumb-wrap { margin-top: 10px; }
.blog-filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 8px 0 0; margin-bottom: -26px; }
.blog-filter-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.blog-filter-links a { display: inline-block; padding: 3px 10px; border-radius: 14px; font-size: 0.76rem; color: var(--color-text-light); text-decoration: none; border: 1px solid var(--color-border-light); -webkit-transition: all 0.25s ease; transition: all 0.25s ease; letter-spacing: 0.02em; }
.blog-filter-links a:hover { color: var(--color-accent); border-color: rgba(184,134,11,0.25); background: rgba(184,134,11,0.04); }
.blog-filter-links a.active { color: #fff; background: linear-gradient(135deg,#1C1917,#2C2825); border-color: transparent; font-weight: 500; }
@media (max-width: 768px) {
    .blog-banner-carousel .carousel-slide img { height: 200px; }
    .blog-banner-carousel .carousel-overlay { padding: 24px 20px 24px; }
    .blog-banner-carousel .carousel-overlay h3 { font-size: 1.1rem; }
    .blog-banner-carousel .carousel-overlay p { font-size: 0.82rem; }
}

/* Product Cards */
.product-card { display: block; background: var(--color-bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--color-border-light); -webkit-transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); text-decoration: none; color: inherit; position: relative; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.2)); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); -webkit-transform-origin: left; transform-origin: left; z-index: 2; }
.product-card:hover { -webkit-transform: translateY(-8px); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(28,25,23,0.10); border-color: transparent; }
.product-card:hover::before { -webkit-transform: scaleX(1); transform: scaleX(1); }

/* Homepage Product Showcase Cards */
.product-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.psc-card { display: flex; flex-direction: column; background: var(--color-bg-card); border-radius: 18px; overflow: hidden; border: 1.5px solid var(--color-border-light); text-decoration: none; color: inherit; position: relative; -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1), border-color 0.35s ease; transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1), border-color 0.35s ease; box-shadow: 0 2px 12px rgba(28,25,23,0.04), 0 1px 3px rgba(28,25,23,0.02); }
.psc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px; background: linear-gradient(90deg, rgba(184,134,11,0.2), var(--color-accent), rgba(184,134,11,0.2)); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: center; transform-origin: center; -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22,0.61,0.36,1); transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1); z-index: 2; }
.psc-card:hover { -webkit-transform: translateY(-8px); transform: translateY(-8px); box-shadow: 0 12px 40px rgba(28,25,23,0.08), 0 4px 14px rgba(28,25,23,0.04), 0 20px 60px rgba(184,134,11,0.07); border-color: rgba(184,134,11,0.2); }
.psc-card:hover::before { -webkit-transform: scaleX(1); transform: scaleX(1); }
.psc-visual { position: relative; overflow: hidden; }
.psc-visual-bg { aspect-ratio: 1/1; background: linear-gradient(145deg, var(--color-bg-alt), var(--color-bg-warm)); display: flex; align-items: center; justify-content: center; overflow: hidden; -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.22,0.61,0.36,1); transition: transform 0.55s cubic-bezier(0.22,0.61,0.36,1); position: relative; }
.psc-visual-bg::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(28,25,23,0.06), transparent); pointer-events: none; }
.psc-card:hover .psc-visual-bg { -webkit-transform: scale(1.06); transform: scale(1.06); }
.psc-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.psc-badge { position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg, rgba(28,25,23,0.72) 0%, rgba(44,40,37,0.82) 100%); -webkit-backdrop-filter: blur(12px) saturate(150%); backdrop-filter: blur(12px) saturate(150%); color: #F5EFE3; font-size: 0.78rem; font-weight: 700; padding: 6px 16px; border-radius: 20px; z-index: 1; letter-spacing: 0.06em; border: 1px solid rgba(218,165,32,0.3); box-shadow: 0 2px 10px rgba(28,25,23,0.15), inset 0 1px 0 rgba(255,255,255,0.08); text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.psc-featured { -webkit-transform: scale(1.02); transform: scale(1.02); border-color: rgba(184,134,11,0.15); box-shadow: 0 8px 32px rgba(184,134,11,0.08); }
.psc-featured:hover { -webkit-transform: scale(1.02) translateY(-10px); transform: scale(1.02) translateY(-10px); box-shadow: 0 16px 48px rgba(28,25,23,0.08), 0 24px 72px rgba(184,134,11,0.12); }
.psc-featured-badge { position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, var(--color-accent), #D4A017); color: white; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; z-index: 3; letter-spacing: 0.03em; }
.psc-content { padding: 12px 16px 10px; flex: 1; display: flex; flex-direction: column; position: relative; background: linear-gradient(180deg, rgba(250,246,240,0.5) 0%, rgba(255,255,255,0.8) 100%); }
.psc-content::before { content: ''; position: absolute; top: 0; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); width: 36px; height: 2px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); border-radius: 1px; opacity: 0.55; -webkit-transition: width 0.4s cubic-bezier(0.22,0.61,0.36,1), opacity 0.4s ease; transition: width 0.4s cubic-bezier(0.22,0.61,0.36,1), opacity 0.4s ease; }
.psc-header { margin-bottom: 2px; text-align: center; }
.psc-header h3 { font-size: 1.05rem; color: var(--color-heading); margin: 0 0 1px; font-weight: 700; letter-spacing: 0.02em; }
.psc-subtitle { font-size: 0.72rem; color: var(--color-text-muted); letter-spacing: 0.06em; display: inline-block; background: rgba(184,134,11,0.06); padding: 2px 12px; border-radius: 10px; margin-top: 2px; -webkit-transition: background 0.3s ease, color 0.3s ease; transition: background 0.3s ease, color 0.3s ease; }
.psc-slogan { font-size: 0.85rem; color: var(--color-accent); font-style: italic; margin: 4px auto 6px; line-height: 1.4; text-align: center; max-width: 100%; opacity: 0.85; position: relative; padding-bottom: 6px; white-space: nowrap; -webkit-transition: opacity 0.3s ease; transition: opacity 0.3s ease; }
.psc-slogan::after { content: ''; display: block; width: 14px; height: 1px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.15)); margin: 4px auto 0; border-radius: 1px; }
.psc-highlights { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; flex: 1; }
.psc-highlight { display: flex; gap: 6px; align-items: flex-start; background: rgba(184,134,11,0.025); border-radius: 8px; padding: 5px 7px; -webkit-transition: background 0.3s ease; transition: background 0.3s ease; }
.psc-h-icon { font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; width: 20px; text-align: center; }
.psc-highlight strong { font-size: 0.76rem; color: var(--color-heading); display: block; margin-bottom: 0; font-weight: 600; }
.psc-highlight p { font-size: 0.78rem; color: var(--color-text-light); line-height: 1.45; margin: 0; }
.psc-footer { display: flex; justify-content: flex-end; align-items: center; padding-top: 6px; margin-top: auto; position: relative; }
.psc-footer::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: linear-gradient(90deg, transparent, var(--color-border-light), transparent); }
.psc-arrow { font-size: 0.85rem; color: var(--color-text); font-weight: 600; -webkit-transition: all 0.3s cubic-bezier(0.4,0,0.2,1); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); letter-spacing: 0.02em; }
.psc-card:hover .psc-arrow { color: var(--color-accent); padding-left: 12px; }
.psc-card:hover .psc-content::before { width: 56px; opacity: 0.8; }
.psc-card:hover .psc-subtitle { background: rgba(184,134,11,0.1); color: var(--color-text); }
.psc-card:hover .psc-highlight { background: rgba(184,134,11,0.05); }
.psc-card:hover .psc-slogan { opacity: 1; }
.psc-trust-line { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; padding: 12px 20px; background: linear-gradient(135deg, rgba(184,134,11,0.03) 0%, rgba(250,246,240,0.5) 50%, rgba(184,134,11,0.03) 100%); border-radius: 12px; font-size: 0.78rem; color: var(--color-text-muted); border: 1px solid rgba(184,134,11,0.08); letter-spacing: 0.03em; position: relative; }
.psc-trust-line::before { content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,134,11,0.15), transparent); }
.psc-trust-item { display: flex; align-items: center; gap: 5px; white-space: nowrap; background: rgba(184,134,11,0.04); padding: 5px 12px; border-radius: 10px; border: 1px solid rgba(184,134,11,0.06); -webkit-transition: background 0.25s ease; transition: background 0.25s ease; }

/* Forms */
.form-card { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); border: 1px solid var(--color-border-light); transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.form-card:hover { box-shadow: var(--shadow-lg, 0 12px 40px rgba(28,25,23,0.1)); border-color: rgba(184,134,11,0.15); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; color: var(--color-heading); }
.form-label .required { color: #D94F4F; margin-left: 2px; }
.form-control { width: 100%; padding: 14px 18px; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-size: 16px; font-family: var(--font-primary); color: var(--color-text); background: var(--color-bg-card); transition: all var(--transition-fast); outline: none; }
.form-control:focus { border-color: var(--color-btn); box-shadow: 0 0 0 3px var(--color-btn-light); }
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.7; }
select.form-control { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235D5C5B' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
select.form-control:invalid, select.form-control option[value=""] { color: var(--color-text-muted); }
.form-hint { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 6px; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--color-btn) 0%, #2a2725 50%, var(--color-btn-hover) 100%); padding: 32px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.4) 35%, rgba(218,165,32,0.55) 50%, rgba(184,134,11,0.4) 65%, transparent 90%); }
.cta-section h2 { color: white; font-size: 2rem; font-size: clamp(1.7rem,4vw,2.4rem); margin-bottom: 10px; font-weight: 800; letter-spacing: 0.03em; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 18px; letter-spacing: 0.02em; line-height: 1.8; }
.cta-section .btn { background: white; color: var(--color-btn); border-color: white; }
.cta-section .btn:hover { background: transparent; color: white; border-color: white; }
.cta-section .btn-outline { background: transparent; color: white; border: 2px solid white; }
.cta-section .btn-outline:hover { background: white; color: var(--color-btn); }

/* Page Banner */
.page-banner { padding: 136px 0 28px; text-align: center; background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%); position: relative; }
.page-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.15) 35%, rgba(184,134,11,0.25) 50%, rgba(184,134,11,0.15) 65%, transparent 90%); }
.page-banner::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 24px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 24V8c100-8 200 8 300 0s200-12 300-4 200 12 300 4 200-12 300-4V24z' fill='%23F7F4EE'/%3E%3C/svg%3E") no-repeat bottom center; background-size: 100% 100%; z-index: 1; }
.page-banner h1 { font-size: 2.2rem; font-size: clamp(1.9rem,4vw,2.6rem); margin-bottom: 14px; font-weight: 800; letter-spacing: 0.04em; position: relative; }
.page-banner .breadcrumb { font-size: 0.85rem; color: var(--color-text-muted); letter-spacing: 0.04em; }
.page-banner .breadcrumb a { color: var(--color-text-light); transition: color 0.25s ease; }
.page-banner .breadcrumb a:hover { color: var(--color-accent); }
.page-banner .breadcrumb span { margin: 0 10px; color: rgba(184,134,11,0.3); }
.page-banner-sub { font-size: 1.02rem; color: var(--color-text-light); max-width: 580px; margin: 0 auto 6px; line-height: 1.85; letter-spacing: 0.02em; }

/* About */
.about-hero { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.about-image { border-radius: 24px; overflow: hidden; box-shadow: 0 32px 80px rgba(28,25,23,0.10), 0 8px 32px rgba(28,25,23,0.06); aspect-ratio: 4/4.5; background: linear-gradient(135deg, #E8D5B5 0%, #D4C4A8 50%, #C9B896 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.about-image::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border-radius: 24px; border: 1px solid rgba(255,255,255,0.2); pointer-events: none; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.value-card { text-align: center; padding: 32px 22px; background: var(--color-bg-card); border-radius: 18px; border: 1.5px solid var(--color-border-light); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.18)); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); -webkit-transform-origin: left; transform-origin: left; }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.03); border-color: rgba(184,134,11,0.12); }
.value-card:hover::before { transform: scaleX(1); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 0.03em; }
.value-card p { color: var(--color-text-light); font-size: 0.92rem; line-height: 1.75; margin: 0; }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; display: inline-block; -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4,0,0.2,1); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.value-card:hover .value-icon { -webkit-transform: scale(1.12) rotate(-5deg); transform: scale(1.12) rotate(-5deg); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, rgba(184,134,11,0.35), var(--color-border) 20%, var(--color-border) 80%, transparent); }
.timeline-item { padding-left: 68px; position: relative; margin-bottom: 36px; transition: transform 0.3s ease; }
.timeline-item:hover { transform: translateX(4px); }
.timeline-dot { position: absolute; left: 16px; top: 4px; width: 18px; height: 18px; background: linear-gradient(145deg, var(--color-accent), #D4A017); border-radius: var(--radius-full); border: 3px solid var(--color-bg); box-shadow: 0 0 0 3px rgba(184,134,11,0.1), 0 2px 8px rgba(184,134,11,0.15); -webkit-transition: all 0.35s cubic-bezier(0.4,0,0.2,1); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.timeline-item:hover .timeline-dot { box-shadow: 0 0 0 5px rgba(184,134,11,0.18), 0 4px 14px rgba(184,134,11,0.2); transform: scale(1.2); }
.timeline-year { font-size: 0.78rem; color: var(--color-accent); font-weight: 700; margin-bottom: 6px; letter-spacing: 0.12em; text-transform: uppercase; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 0.02em; }
.timeline-item p { font-size: 0.92rem; color: var(--color-text-light); margin: 0; line-height: 1.75; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; -webkit-transition: -webkit-transform 0.3s ease; transition: transform 0.3s ease; }
.contact-info-item:hover { transform: translateX(4px); }
.contact-info-icon { width: 52px; height: 52px; background: linear-gradient(145deg, rgba(184,134,11,0.08), rgba(184,134,11,0.04)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; border: 1px solid rgba(184,134,11,0.08); }
.contact-info-item:hover .contact-info-icon { background: linear-gradient(145deg, rgba(184,134,11,0.15), rgba(184,134,11,0.08)); transform: scale(1.08); box-shadow: 0 4px 12px rgba(184,134,11,0.1); }
.contact-info-text h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-text p { font-size: 0.92rem; color: var(--color-text-light); margin: 0; }

/* Blog Layout */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.sidebar-widget { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; border: 1px solid var(--color-border-light); position: relative; overflow: hidden; transition: all var(--transition-base); }
.sidebar-widget::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.15)); opacity: 0; -webkit-transition: opacity 0.3s ease; transition: opacity 0.3s ease; }
.sidebar-widget:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.sidebar-widget:hover::before { opacity: 1; }
.sidebar-widget-title { font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--color-border-light); position: relative; }
.sidebar-widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 32px; height: 2px; background: var(--color-accent); border-radius: 1px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { display: inline-block; padding: 6px 14px; background: var(--color-bg); border-radius: var(--radius-xl); font-size: 0.82rem; color: var(--color-text-light); border: 1px solid var(--color-border-light); }
.tag-cloud a:hover { background: var(--color-btn); color: white; border-color: var(--color-btn); }

/* Order Layout */
.order-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.trust-badge { text-align: center; padding: 20px 14px; background: var(--color-bg-card); border-radius: var(--radius-md); border: 1px solid var(--color-border-light); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.trust-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,25,23,0.08); border-color: rgba(184,134,11,0.18); }
.trust-badge-icon { font-size: 2rem; margin-bottom: 8px; }
.trust-badge h4 { font-size: 0.95rem; margin-bottom: 4px; }
.trust-badge p { font-size: 0.82rem; color: var(--color-text-light); margin: 0; }
.order-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
.order-sidebar { display: flex; flex-direction: column; }
.order-sidebar-card { background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; border: 1px solid var(--color-border-light); transition: box-shadow 0.3s ease, border-color 0.3s ease; flex: 1; display: flex; flex-direction: column; }
.order-sidebar-card:last-child { margin-bottom: 0; }
.order-sidebar-card:hover { box-shadow: 0 8px 28px rgba(28,25,23,0.08); border-color: rgba(184,134,11,0.15); }
.upload-zone { border: 2px dashed var(--color-border); border-radius: var(--radius-md); padding: 12px; text-align: center; cursor: pointer; transition: all var(--transition-base); background: var(--color-bg-light); }
.upload-zone:hover { border-color: var(--color-btn); background: var(--color-btn-light); }
.upload-zone.drag-over { border-color: var(--color-btn); background: var(--color-btn-light); }
.upload-preview-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.upload-preview-item { position: relative; width: 64px; height: 64px; border-radius: var(--radius-sm, 6px); overflow: hidden; border: 2px solid var(--color-border); background: var(--color-bg-light); box-shadow: 0 2px 8px rgba(28,25,23,0.06); transition: border-color 0.2s, box-shadow 0.2s; }
.upload-preview-item:hover { border-color: var(--color-btn); box-shadow: 0 4px 12px rgba(28,25,23,0.1); }
.upload-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-preview-remove { position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; border-radius: 50%; background: rgba(28,25,23,0.7); color: #fff; border: none; cursor: pointer; font-size: 12px; line-height: 20px; text-align: center; padding: 0; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.upload-preview-remove:hover { background: rgba(220,38,38,0.85); }
.upload-counter { display: inline-block; font-size: 0.82rem; color: var(--color-text-muted); margin-top: 8px; }
.upload-counter.limit-warn { color: #d32f2f; font-weight: 600; }

/* Footer */
.site-footer { background: linear-gradient(180deg, #1C1917 0%, #151210 40%, #0F0D0B 100%); color: rgba(255,255,255,0.65); padding: 0; position: relative; }
.site-footer::before { content: ''; display: block; height: 1px; background: linear-gradient(90deg, transparent 5%, rgba(184,134,11,0.2) 20%, rgba(218,165,32,0.45) 50%, rgba(184,134,11,0.2) 80%, transparent 95%); box-shadow: 0 0 12px rgba(184,134,11,0.12), 0 0 30px rgba(184,134,11,0.05); }
.footer-main { padding: 36px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr; gap: 24px; }
.footer-brand .site-title { color: white; font-size: 1.5rem; margin-bottom: 8px; font-weight: 800; letter-spacing: 0.06em; background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand-slogan { font-size: 0.82rem; color: #B8860B; margin-bottom: 10px; font-weight: 500; letter-spacing: 0.08em; }
.footer-brand p { font-size: 0.88rem; line-height: 1.9; margin-bottom: 16px; color: rgba(255,255,255,0.5); max-width: 320px; }
.footer-social-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px; font-weight: 600; }
.social-links { display: flex; gap: 10px; margin-top: 0; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: all 0.35s cubic-bezier(0.4,0,0.2,1); overflow: hidden; flex-shrink: 0; position: relative; }
.social-link::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border-radius: 50%; background: radial-gradient(circle at 50% 120%, rgba(184,134,11,0.15) 0%, transparent 70%); opacity: 0; -webkit-transition: opacity 0.35s ease; transition: opacity 0.35s ease; pointer-events: none; }
.social-link:hover { background: rgba(184,134,11,0.12); color: #DAA520; border-color: rgba(184,134,11,0.3); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(184,134,11,0.15); }
.social-link:hover::after { opacity: 1; }
.social-link:active { transform: translateY(-1px) scale(0.95); transition-duration: 0.1s; }
.social-link img { width: 20px; height: 20px; object-fit: contain; border-radius: 2px; }
.footer-heading { color: white; font-size: 0.82rem; margin-bottom: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: linear-gradient(90deg, #B8860B, rgba(184,134,11,0.2)); border-radius: 1px; }
.footer-links a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 4px 0; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); letter-spacing: 0.02em; }
.footer-links a:hover { color: #DAA520; transform: translateY(-2px); }
.footer-links a:active { transform: translateY(-1px) scale(0.98); transition-duration: 0.1s; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.01em; }
.footer-contact p svg { opacity: 0.6; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 14px 0; background: rgba(0,0,0,0.2); position: relative; font-family: var(--font-primary); }
.footer-bottom::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 10%, rgba(184,134,11,0.08) 50%, transparent 90%); pointer-events: none; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { display: flex; flex-direction: column; gap: 3px; }
.footer-filing { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 18px; font-size: 0.72rem; }
.footer-filing a { position: relative; }
.footer-filing a:not(:last-child)::after { content: '\00B7'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.2); pointer-events: none; }
.filing-police { display: -webkit-inline-flex; display: inline-flex; -webkit-align-items: center; align-items: center; }
.filing-badge { display: inline-block; width: 20px; height: 20px; vertical-align: middle; margin-right: 4px; }
.filing-badge-svg { display: none; vertical-align: middle; margin-right: 4px; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 18px; align-self: flex-end; }
.footer-legal a { position: relative; }
.footer-legal a:not(:last-child)::after { content: '\00B7'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.2); pointer-events: none; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--color-bg-card); border-radius: var(--radius-lg); padding: 40px 48px; border: 1px solid var(--color-border-light); box-shadow: var(--shadow-sm); }
.legal-update-date { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border-light); }
.legal-content > p { font-size: 1rem; line-height: 1.9; color: var(--color-text); margin-bottom: 20px; }
.legal-content h2 { font-size: 1.25rem; color: var(--color-heading); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--color-border-light); font-weight: 600; }
.legal-content h2:first-of-type { margin-top: 32px; }
.legal-content h3 { font-size: 1.05rem; color: var(--color-heading); margin: 24px 0 12px; font-weight: 600; }
.legal-content ul { list-style: none; padding: 0; margin: 12px 0 20px; }
.legal-content ul li { position: relative; padding: 6px 0 6px 24px; font-size: 0.95rem; line-height: 1.8; color: var(--color-text); }
.legal-content ul li::before { content: ''; position: absolute; left: 6px; top: 14px; width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; }
.legal-footer-note { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--color-border-light); }
.legal-footer-note p { font-size: 0.95rem; color: var(--color-text-light); text-align: center; font-style: italic; }

/* Sitemap Page */

/* Back to Top */
@keyframes bttPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(28,25,23,0.18), 0 8px 32px rgba(28,25,23,0.10), 0 0 0 0 rgba(184,134,11,0.18); }
    50% { box-shadow: 0 4px 20px rgba(28,25,23,0.18), 0 8px 32px rgba(28,25,23,0.10), 0 0 0 12px rgba(184,134,11,0); }
}
.back-to-top { position: fixed; bottom: 36px; right: 36px; width: 54px; height: 54px; background: linear-gradient(145deg, #2a2725 0%, #1C1917 50%, #0C0A09 100%); color: white; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity 0.45s cubic-bezier(.4,0,.2,1), visibility 0.45s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease; z-index: 998; box-shadow: 0 4px 20px rgba(28,25,23,0.18), 0 8px 32px rgba(28,25,23,0.10); }
.back-to-top::before { content: ''; position: absolute; top: 3px; right: 3px; bottom: 3px; left: 3px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); pointer-events: none; }
.back-to-top::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; border-radius: 50% 50% 0 0; background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%); pointer-events: none; }
.back-to-top.visible { opacity: 1; visibility: visible; animation: bttPulse 3s ease-in-out infinite; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(28,25,23,0.22), 0 16px 48px rgba(28,25,23,0.12), 0 0 0 4px rgba(184,134,11,0.12); animation: none; border-color: rgba(184,134,11,0.3); }
.back-to-top:active { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(28,25,23,0.2); }
.back-to-top svg { width: 22px; height: 22px; position: relative; z-index: 1; }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Enhanced Visual Polish */
.btn:active { transform: translateY(-1px) scale(0.98); }
/* Smooth image loading placeholder */
.portfolio-item, .sp-product-visual, .psc-visual-bg {
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced focus states for accessibility */
.btn:focus, .form-control:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.btn:focus-visible, .form-control:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.faq-question:focus, .faq-question:focus-visible {
    outline: none;
}

/* Better form interaction */
input.form-control:not(:placeholder-shown),
textarea.form-control:not(:placeholder-shown) { border-color: var(--color-success); }
input.form-control:not(:placeholder-shown):focus,
textarea.form-control:not(:placeholder-shown):focus { border-color: var(--color-btn); }

/* Upload zone enhanced feedback */
.upload-zone:active { border-color: var(--color-accent); background: var(--color-accent-light); transform: scale(0.99); }

/* Page banner subtle parallax */
.page-banner { background-attachment: scroll; }

/* Smooth FAQ transitions */
.faq-item { transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.sp-faq-item { transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }

/* CTA Actions */
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; position: relative; }

.nav-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(28,25,23,0.4); z-index: 999; opacity: 0; visibility: hidden; -webkit-transition: opacity 0.35s ease, visibility 0.35s; transition: opacity 0.35s ease, visibility 0.35s; pointer-events: none; }
.nav-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

/* Responsive */
/* Mobile Menu Toggle Button */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px; -webkit-tap-highlight-color: transparent; border-radius: 10px; transition: background 0.25s ease; }
.mobile-menu-btn:hover { background: rgba(184,134,11,0.06); }
.mobile-menu-btn:active { background: rgba(184,134,11,0.12); transition-duration: 0.08s; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--color-heading); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); border-radius: 2px; transform-origin: center; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .about-hero { gap: 36px; }
    .order-layout { grid-template-columns: 1fr; }
    .order-sidebar { position: static; }
    .hero { min-height: auto; padding-top: calc(var(--header-height) + 16px); padding-bottom: 32px; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding: 0; }
    .hero-content { padding: 16px 0; max-width: 100%; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-stats { gap: 28px; justify-content: center; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 360px; }
    .hero-visual { padding: 0 20px; order: -1; }
    .hero-image-wrapper { max-width: 400px; margin: 0 auto; }
    .hero-float-badge { left: auto; right: -8px; bottom: 16px; }
    .hero-visual::before { width: 100%; height: 100%; }
    .product-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .psc-card:nth-child(3) { grid-column: span 2; max-width: 50%; margin: 0 auto; }
    .psc-featured { -webkit-transform: scale(1); transform: scale(1); }
    .process-step:not(:last-child)::after, .process-step:not(:last-child)::before { display: none; }
}
@media (hover: none) {
    .blog-banner-carousel .carousel-btn { opacity: 0.7; }
    .wd-img-nav, .pd-img-nav { opacity: 0.7; }
    .pf-card-badge { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .section { padding: 32px 0; } .section-tight-top { padding-top: 16px; }
    .mobile-menu-btn { display: flex; }
    .brand-logo { width: 50px; height: 50px; font-size: 1.35rem; }
    .site-title { font-size: 1.28rem; }
    .site-description { font-size: 0.72rem; letter-spacing: 0.12em; }
    .main-navigation { position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px; background: rgba(247,244,238,0.98); -webkit-backdrop-filter: blur(24px) saturate(180%); backdrop-filter: blur(24px) saturate(180%); padding: calc(var(--header-height) + 20px) 28px 28px; -webkit-transform: translateX(100%); transform: translateX(100%); -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s; overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 999; visibility: hidden; box-shadow: -8px 0 30px rgba(28,25,23,0.08); }
    .main-navigation.open { -webkit-transform: translateX(0); transform: translateX(0); visibility: visible; }
    .main-navigation ul { flex-direction: column; gap: 0; }
    .main-navigation a { padding: 16px 20px; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid rgba(184,134,11,0.06); border-radius: 0; letter-spacing: 0.04em; }
    .main-navigation a::after { display: none; }
    .main-navigation .nav-cta { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(184,134,11,0.1); }
    .main-navigation .nav-cta a { display: block; text-align: center; border-radius: var(--radius-xl); border-bottom: none; }
    .main-navigation .sub-menu { position: static; -webkit-transform: none; transform: none; max-height: 0; overflow: hidden; opacity: 1; visibility: visible; background: rgba(184,134,11,0.02); border-radius: 0; padding: 0; box-shadow: none; border: none; transition: max-height 0.35s ease; min-width: 0; }
    .main-navigation .sub-menu.open { max-height: 300px; }
    .main-navigation .sub-menu a { padding: 14px 20px 14px 36px; font-size: 0.92rem; color: var(--color-text-light); border-bottom: 1px solid rgba(184,134,11,0.04); border-radius: 0; }
    .main-navigation .sub-menu a:hover { background: rgba(184,134,11,0.04); color: var(--color-accent); }
    .main-navigation .sub-menu li + li { border-top: none; margin: 0; }
    .main-navigation .menu-item-has-children > a { padding-right: 20px; }
    .main-navigation .menu-item-has-children > a .nav-arrow { display: none; }
    .main-navigation .menu-item-has-children > a { display: flex; align-items: center; justify-content: space-between; }
    .main-navigation .menu-item-has-children > a::after { content: '+'; display: block; font-size: 1.2rem; font-weight: 400; color: var(--color-text-muted); transition: transform 0.3s ease; }
    .main-navigation .menu-item-has-children.open > a::after { content: '\2212'; }
    .hero { min-height: auto; padding-top: calc(var(--header-height) + 16px); padding-bottom: 32px; }
    .hero-content { padding: 16px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; max-width: 360px; margin: 0 auto; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-image-wrapper { max-width: 320px; }
    .hero-float-badge { display: none; }
    .features-grid, .testimonials-grid, .blog-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step:not(:last-child)::after, .process-step:not(:last-child)::before { display: none; }
    .about-hero { grid-template-columns: 1fr; gap: 28px; }
    .about-image { aspect-ratio: 16/10; }
    .timeline::before { left: 18px; }
    .timeline-item { padding-left: 48px; margin-bottom: 28px; }
    .timeline-dot { left: 10px; width: 16px; height: 16px; border-width: 2px; box-shadow: 0 0 0 2px rgba(184,134,11,0.12); }
    .timeline-item h3 { font-size: 1rem; }
    .timeline-item p { font-size: 0.88rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-card { padding: 22px 18px; }
    .footer-main { padding: 36px 0 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
    .footer-bottom-left { align-items: center; }
    .order-trust { grid-template-columns: 1fr 1fr; }
    .page-banner { padding: calc(var(--header-height) + 36px + 16px) 0 22px; }
    .page-banner-sub { font-size: 0.92rem; }
    .cta-section { padding: 40px 0; }
    .section-header { margin-bottom: 22px; }
    .testimonial-card { padding: 14px; }
    .blog-layout { gap: 24px; }
    .trust-bar-inner { gap: 24px; font-size: 0.82rem; }
    .cta-actions { flex-direction: column; }
    .legal-content { padding: 32px 28px; }
    .product-showcase-grid { grid-template-columns: 1fr; gap: 20px; }
    .psc-featured { -webkit-transform: scale(1); transform: scale(1); }
    .psc-featured:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); box-shadow: 0 16px 48px rgba(28,25,23,0.08), 0 24px 72px rgba(184,134,11,0.12); }
    .psc-trust-line { gap: 10px; font-size: 0.72rem; padding: 10px 16px; }
    .psc-trust-item { background: rgba(184,134,11,0.04); padding: 4px 10px; border-radius: 8px; border: 1px solid rgba(184,134,11,0.06); }
    /* Hero mobile refinements */
    .hero-sparkle { display: none; }
    .hero-float-deco { display: none; }
    .hero-badge { white-space: normal; text-align: center; max-width: 100%; }
    .hero-title .highlight::before { left: -4px; right: -4px; }
    /* Services page mobile */
    .sp-hero { padding: calc(var(--header-height) + 36px + 16px) 0 36px; }
    .sp-hero-sub { font-size: 1rem; }
    /* FAQ CTA mobile */
    #page-faq .section-warm .section > div > div:last-child,
    .faq-cta-actions { flex-direction: column; align-items: center; }
    :root { --header-height: 64px; }
    .site-header.scrolled { height: 56px; }
    .site-header.scrolled .brand-logo { width: 44px; height: 44px; }
    .header-inner { padding: 0 16px; }
    .mobile-menu-btn { min-width: 44px; min-height: 44px; }
    .blog-banner-carousel .carousel-btn { opacity: 0.7; }
    .blog-banner-carousel .carousel-dots .dot { width: 24px; height: 24px; }
    .upload-preview-remove, .pd-upload-remove { width: 28px; height: 28px; font-size: 14px; line-height: 28px; }
    .blog-filter-links a { padding: 8px 14px; font-size: 0.85rem; min-height: 36px; display: inline-flex; align-items: center; }
    .blog-filter-bar { margin-bottom: -12px; }
    .pf-pg-btn { min-width: 44px; height: 44px; }
    .footer-links a { padding: 10px 0; }
    .back-to-top { bottom: calc(24px + env(safe-area-inset-bottom, 0px)); right: 20px; }
    body.has-mobile-cta .back-to-top { bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
    .social-link { width: 48px; height: 48px; }
    .social-link svg { width: 20px; height: 20px; }
    .tag-cloud a { padding: 8px 14px; min-height: 36px; display: inline-flex; align-items: center; }
    .btn-sm { padding: 12px 24px; }
    .faq-item.active .faq-answer { max-height: 1200px; }
    .sp-faq-item.open .sp-faq-a { max-height: 600px; }
    .faq-answer-inner table, .faq-answer-inner iframe, .faq-answer-inner embed, .faq-answer-inner video,
    .about-story-text table, .about-story-text iframe, .about-story-text embed, .about-story-text video,
    .sp-faq-a table, .sp-faq-a iframe, .sp-faq-a embed, .sp-faq-a video,
    .wd-faq-a table, .wd-faq-a iframe, .wd-faq-a embed, .wd-faq-a video,
    .legal-content table, .legal-content iframe,
    .bp-body table, .bp-body iframe, .bp-body embed, .bp-body video { max-width: 100%; height: auto; overflow-x: auto; display: block; }
    .faq-answer-inner iframe, .about-story-text iframe, .sp-faq-a iframe, .wd-faq-a iframe, .legal-content iframe, .bp-body iframe { width: 100%; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .brand-logo { width: 44px; height: 44px; font-size: 1.2rem; }
    .site-branding { gap: 12px; }
    .site-title { font-size: 1.12rem; letter-spacing: 0.04em; }
    .site-description { font-size: 0.75rem; letter-spacing: 0.10em; }
    .hero-stat-number { font-size: 1.3rem; }
    .process-grid { grid-template-columns: 1fr; }
    .order-trust { grid-template-columns: 1fr; }
    .page-banner { padding: calc(var(--header-height) + 36px + 10px) 0 16px; }
    .page-banner h1 { font-size: 1.6rem; }
    .page-banner-sub { font-size: 0.88rem; max-width: 90%; }
    .btn-lg { padding: 14px 32px; font-size: 1rem; }
    .feature-card { padding: 24px 18px; }
    .portfolio-grid { gap: 16px; }
    .footer-main { padding: 28px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-brand { grid-column: auto; }
    .footer-heading { margin-bottom: 12px; }
    .footer-bottom { padding: 14px 0; }
    .form-card { padding: 20px 16px; }
    .section { padding: 24px 0; } .section-tight-top { padding-top: 12px; }
    .section-header { margin-bottom: 16px; }
    .section-title { font-size: 1.4rem; }
    .cta-section { padding: 28px 0; }
    .cta-section h2 { font-size: 1.3rem; }
    .faq-question { padding: 18px 20px 18px 56px; font-size: 0.94rem; }
    .faq-question::before { left: 16px; width: 28px; height: 28px; font-size: 0.68rem; border-radius: 6px; }
    .faq-answer-inner { padding: 4px 20px 22px 56px; background-position: 56px top; }
    .testimonial-card { padding: 12px; }
    .social-link { width: 40px; height: 40px; }
    .legal-content { padding: 24px 18px; }
    .legal-content h2 { font-size: 1.1rem; margin: 32px 0 14px; }
    .legal-content h3 { font-size: 1rem; }
    .legal-content ul li { font-size: 0.9rem; padding-left: 20px; }
    .psc-card:nth-child(3) { grid-column: span 1; max-width: 100%; }
    .psc-trust-line { flex-wrap: wrap; justify-content: center; gap: 6px; font-size: 0.68rem; padding: 10px 12px; }
    .psc-trust-item { padding: 3px 8px; border-radius: 6px; }
    .psc-content { padding: 10px 14px 10px; }
    .about-values { grid-template-columns: 1fr; gap: 16px; }
    .upload-zone { padding: 20px 14px; }
    .timeline::before { left: 14px; }
    .timeline-item { padding-left: 38px; margin-bottom: 28px; }
    .timeline-dot { left: 6px; width: 14px; height: 14px; box-shadow: 0 0 0 2px rgba(184,134,11,0.1); }
    .timeline-item h3 { font-size: 0.95rem; }
    .timeline-year { font-size: 0.78rem; }
    .timeline-item p { font-size: 0.84rem; }
    /* Hero very small screen refinements */
    .hero-title { font-size: 1.6rem; }
    .hero-badge { font-size: 0.72rem; padding: 5px 12px; line-height: 1.5; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-stats { gap: 12px; }
    .hero-stat-label { font-size: 0.76rem; }
    .hero-inner { gap: 24px; }
    .hero-content { padding: 12px 0; }
    /* Contact grid mobile */
    .contact-grid { gap: 28px; }
    .contact-info-list { gap: 20px; }
    .contact-info-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    /* Blog mobile small */
    .blog-grid { gap: 20px; }
    .blog-card-body { padding: 18px; }
    /* Services 480px */
    .sp-hero { padding: calc(var(--header-height) + 36px + 10px) 0 28px; }
    .sp-hero-sub { font-size: 0.92rem; }
    /* Process grid small mobile */
    .process-grid { gap: 20px; }
    /* Trust bar very small */
    .trust-bar-inner { gap: 12px; font-size: 0.74rem; }
    /* FAQ buttons stack */
    .faq-cta-actions .btn { width: 100%; }
    :root { --header-height: 56px; }
    .blog-banner-carousel .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; opacity: 0.8; }
    .blog-banner-carousel .carousel-slide img { height: 160px; }
}

/* Services Page - Modern Design */
.sp-hero { position: relative; padding: 136px 0 48px; text-align: center; background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%); overflow: hidden; }
.sp-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 50% 0%, rgba(184,134,11,0.06) 0%, transparent 60%); pointer-events: none; }
.sp-hero h1 { font-size: 2.2rem; font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; font-weight: 800; position: relative; letter-spacing: 0.04em; }
.sp-hero-sub { font-size: 1.05rem; color: var(--color-text-light); max-width: 640px; margin: 0 auto 20px; line-height: 1.9; overflow: hidden; max-height: 180px; }
.sp-highlight { color: #8B6914; font-weight: 700; font-style: italic; letter-spacing: 0.04em; white-space: nowrap; }
.sp-hero-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.sp-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 28px; background: var(--color-bg-card); border: 1px solid var(--color-border-light); border-radius: var(--radius-xl); font-size: 0.88rem; font-weight: 600; color: var(--color-text); letter-spacing: 0.06em; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; cursor: pointer; text-decoration: none; }
.sp-hero-tag:hover { border-color: var(--color-accent); color: var(--color-accent); -webkit-transform: translateY(-2px); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(184,134,11,0.1); }
.sp-hero-tag.active { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-light); }

/* Segmented Tab Bar — Sticky */
.sp-tags-below { display: flex; justify-content: center; padding: 20px 0 14px; width: 100%; position: -webkit-sticky; position: sticky; top: 80px; z-index: 90; background: rgba(255,255,255,0.88); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 8px rgba(28,25,23,0.06); }
.site-header.scrolled ~ main .sp-tags-below { top: 68px; }
.sp-tags-below .sp-hero-tag { gap: 0; padding: 12px 32px; border-radius: 0; border-right: none; margin-left: -1px; background: var(--color-bg-card); font-size: 0.9rem; letter-spacing: 0.05em; -webkit-transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; }
.sp-tags-below .sp-hero-tag:first-child { border-radius: var(--radius-xl) 0 0 var(--radius-xl); margin-left: 0; }
.sp-tags-below .sp-hero-tag:last-child { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; border-right: 1px solid var(--color-border-light); }
.sp-tags-below .sp-hero-tag:hover { -webkit-transform: none; transform: none; box-shadow: none; color: var(--color-accent); border-color: var(--color-border-light); z-index: 1; }
.sp-tags-below .sp-hero-tag.active { background: linear-gradient(135deg, var(--color-accent) 0%, #D4A017 100%); color: #fff; border-color: var(--color-accent); z-index: 2; box-shadow: 0 4px 18px rgba(184,134,11,0.28); font-weight: 700; }
.sp-tags-below .sp-hero-tag.active:hover { color: #fff; border-color: var(--color-accent); }
/* sp-tags-below scrolled position moved to base section for proper cascade */

/* Overview Cards */
.sp-overview { padding: 0 0 4px; position: relative; z-index: 2; }
.sp-overview-card { display: flex; flex-direction: column; align-items: center; background: var(--color-bg-card); border: 1.5px solid var(--color-border-light); border-radius: 20px; overflow: hidden; cursor: pointer; text-align: center; font-family: inherit; color: inherit; position: relative; -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1), border-color 0.35s ease; transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1), border-color 0.35s ease; }
.sp-overview-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, rgba(184,134,11,0.2), var(--color-accent), rgba(184,134,11,0.2)); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transform-origin: center; transform-origin: center; -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22,0.61,0.36,1); transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1); }
.sp-overview-card:hover { -webkit-transform: translateY(-8px); transform: translateY(-8px); box-shadow: 0 12px 40px rgba(28,25,23,0.08), 0 4px 14px rgba(28,25,23,0.04), 0 20px 60px rgba(184,134,11,0.07); border-color: rgba(184,134,11,0.22); }
.sp-overview-card:hover::after { -webkit-transform: scaleX(0.85); transform: scaleX(0.85); }
.sp-overview-card.active { border-color: rgba(184,134,11,0.4); box-shadow: 0 8px 36px rgba(184,134,11,0.16), 0 2px 10px rgba(184,134,11,0.08); }
.sp-overview-card.active::after { -webkit-transform: scaleX(1); transform: scaleX(1); }
@keyframes spBadgePulse { 0%,100%{ box-shadow: 0 2px 10px rgba(184,134,11,0.3); } 50%{ box-shadow: 0 2px 16px rgba(184,134,11,0.45); } }
@keyframes spBadgeDot { 0%,100%{ opacity: 0.7; } 50%{ opacity: 0.3; } }

/* Tab Panels */
.sp-tab-panels { position: relative; }
.sp-tab-panel { display: none; animation: spFadeIn 0.35s ease; }
.sp-tab-panel.active { display: block; }
@keyframes spFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Category Section */
.sp-category { padding: 28px 0; position: relative; scroll-margin-top: 178px; }
.sp-tab-panel:nth-child(even) .sp-category { background: var(--color-bg-light); }
.sp-category-header { text-align: center; margin-bottom: 20px; }
.sp-category-header h2 { font-size: 1.9rem; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; letter-spacing: 0.04em; position: relative; display: inline-block; }
.sp-category-header h2::after { content: ''; display: block; width: 40px; height: 2.5px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.25)); margin: 14px auto 0; border-radius: 2px; }
.sp-category-tagline { font-size: 1.05rem; color: var(--color-accent); font-style: italic; margin-bottom: 16px; letter-spacing: 0.02em; }
.sp-category-desc { font-size: 0.95rem; color: var(--color-text-light); max-width: 640px; margin: 0 auto; line-height: 1.8; }

/* Product Cards */
.sp-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.sp-product-card { background: var(--color-bg-card); border-radius: 20px; overflow: hidden; border: 1px solid var(--color-border-light); -webkit-transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; }
.sp-product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.2)); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transition: -webkit-transform 0.4s ease; transition: transform 0.4s ease; -webkit-transform-origin: left; transform-origin: left; z-index: 2; }
.sp-product-card:hover { -webkit-transform: translateY(-8px); transform: translateY(-8px); box-shadow: 0 24px 64px rgba(28,25,23,0.10), 0 4px 16px rgba(28,25,23,0.04); border-color: transparent; }
.sp-product-card:hover::before { -webkit-transform: scaleX(1); transform: scaleX(1); }
.sp-product-visual { aspect-ratio: 1/1; background: linear-gradient(145deg, var(--color-bg-alt), var(--color-bg-warm)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sp-product-visual::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to top, rgba(255,255,255,0.25), transparent); pointer-events: none; }
.sp-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-product-body { padding: 18px 22px 20px; }
.sp-product-name { font-size: 1.2rem; color: var(--color-heading); margin-bottom: 4px; font-weight: 700; letter-spacing: 0.02em; }
.sp-product-spec { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.sp-product-desc { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; margin-bottom: 10px; }
.sp-product-meta { display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.sp-product-meta-item { font-size: 0.82rem; color: var(--color-text); display: flex; align-items: center; gap: 4px; background: var(--color-btn-light); padding: 4px 10px; border-radius: 6px; }
.sp-product-meta-label { color: var(--color-text-muted); }
.sp-product-footer { display: flex; justify-content: flex-end; align-items: center; padding-top: 10px; border-top: 1px solid var(--color-border-light); }
.sp-product-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--color-accent); font-weight: 600; padding: 10px 22px; background: var(--color-accent-light); border: 1px solid transparent; border-radius: var(--radius-xl); -webkit-transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); cursor: pointer; letter-spacing: 0.02em; }
.sp-product-link:hover { background: var(--color-accent); color: white; border-color: var(--color-accent); -webkit-transform: translateY(-2px); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.25); }
.sp-product-card:hover .sp-product-link { color: var(--color-accent); }
.sp-product-card:hover .sp-product-link:hover { color: white; }

/* FAQ Accordion */
.sp-faq { max-width: 720px; margin: 0 auto 24px; background: var(--color-bg-warm); border-radius: var(--radius-lg); padding: 24px 22px; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='.6' fill='%23B8860B' fill-opacity='.02'/%3E%3Ccircle cx='0' cy='0' r='.4' fill='%23B8860B' fill-opacity='.015'/%3E%3C/svg%3E"); position: relative; }
.sp-faq::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,134,11,0.12), transparent); pointer-events: none; }
.sp-faq-item { background: var(--color-bg-card); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; border-left: 3px solid transparent; box-shadow: var(--shadow-xs); -webkit-transition: all 0.35s ease; transition: all 0.35s ease; }
.sp-faq-item:last-child { margin-bottom: 0; }
.sp-faq-item:hover { box-shadow: var(--shadow-sm); }
.sp-faq-item.open { border-left-color: var(--color-accent); box-shadow: 0 4px 20px rgba(28,25,23,0.06), 0 1px 4px rgba(184,134,11,0.06); }
.sp-faq-q { display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--color-heading); -webkit-user-select: none; user-select: none; -webkit-transition: background-color 0.2s ease; transition: background-color 0.2s ease; border: 0; outline: none; background: transparent; width: 100%; text-align: left; font-family: inherit; line-height: inherit; margin: 0; -webkit-appearance: none; appearance: none; }
.sp-faq-q:hover { background: rgba(184,134,11,0.025); }
.sp-faq-q-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: var(--color-accent-light); color: var(--color-accent); border-radius: var(--radius-sm); font-size: 0.72rem; font-weight: 700; flex-shrink: 0; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; letter-spacing: 0; }
.sp-faq-item.open .sp-faq-q-icon { background: var(--color-accent); color: white; border-radius: var(--radius-xs); }
.sp-faq-q-arrow { margin-left: auto; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); -webkit-transition: all 0.3s ease; transition: all 0.3s ease; border-radius: var(--radius-full); background: transparent; flex-shrink: 0; }
.sp-faq-q-arrow::before { content: ''; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; -webkit-transform: rotate(45deg) translateY(-2px); transform: rotate(45deg) translateY(-2px); -webkit-transition: transform 0.3s ease; transition: transform 0.3s ease; }
.sp-faq-item:hover .sp-faq-q-arrow { color: var(--color-accent); }
.sp-faq-item.open .sp-faq-q-arrow { color: var(--color-accent); }
.sp-faq-item.open .sp-faq-q-arrow::before { -webkit-transform: rotate(-135deg) translateY(-2px); transform: rotate(-135deg) translateY(-2px); }
.sp-faq-a { padding: 0 22px 0 62px; font-size: 0.9rem; color: var(--color-text-light); line-height: 1.8; max-height: 0; overflow: hidden; opacity: 0; -webkit-transition: max-height 0.35s ease, opacity 0.3s ease, padding-bottom 0.35s ease; transition: max-height 0.35s ease, opacity 0.3s ease, padding-bottom 0.35s ease; }
.sp-faq-a::before { content: ''; display: block; width: 20px; height: 1px; background: linear-gradient(90deg, var(--color-accent), transparent); margin-bottom: 12px; opacity: 0.3; }
.sp-faq-item.open .sp-faq-a { max-height: 200px; opacity: 1; padding-bottom: 20px; }

/* Reviews Carousel */
.sp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.sp-review-card { background: var(--color-bg-card); border-radius: 16px; border: 1px solid var(--color-border-light); padding: 24px; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; }
.sp-review-card:hover { -webkit-transform: translateY(-4px); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(28,25,23,0.08), 0 2px 8px rgba(28,25,23,0.04); }
.sp-review-stars { color: var(--color-accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.sp-review-photo { width: 100%; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; margin-bottom: 8px; position: relative; }
.sp-review-photo-img { width: 100%; height: 100%; position: relative; }
.sp-review-photo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-review-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 6px 12px; background: linear-gradient(transparent, rgba(0,0,0,0.5)); color: white; font-size: 0.75rem; font-weight: 500; }
.sp-review-text { font-size: 0.92rem; color: var(--color-text); line-height: 1.8; margin-bottom: 8px; font-style: italic; }
.sp-review-author { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px solid var(--color-border-light); }
.sp-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent), #D4A017); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.sp-review-name { font-size: 0.88rem; font-weight: 600; color: var(--color-heading); margin: 0; }
.sp-review-pet { font-size: 0.78rem; color: var(--color-text-muted); margin: 0; }

/* Section CTA */
.sp-section-cta { text-align: center; padding: 28px 0; }
.sp-section-cta h3 { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: 0.03em; }
.sp-section-cta p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 28px; }
.sp-section-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sp-section-cta .btn { background: linear-gradient(135deg, #1C1917 0%, #2C2824 100%); border-color: transparent; padding: 16px 44px; font-size: 0.95rem; border-radius: var(--radius-xl); font-weight: 600; letter-spacing: 0.06em; }
.sp-section-cta .btn::after { background: linear-gradient(90deg, transparent, rgba(184,134,11,0.2), transparent); }
.sp-section-cta .btn:hover { background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%); -webkit-transform: translateY(-3px); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(28,25,23,0.25), 0 2px 8px rgba(184,134,11,0.15); }
.sp-section-cta .btn-outline { background: var(--color-bg-card); color: var(--color-btn); border: 2px solid var(--color-btn-border); padding: 16px 40px; font-size: 1rem; border-radius: var(--radius-xl); font-weight: 600; letter-spacing: 0.03em; }
.sp-section-cta .btn-outline:hover { background: var(--color-btn); color: white; border-color: var(--color-btn); box-shadow: var(--shadow-md); }

/* Services Responsive */
@media (max-width: 1024px) {
    .sp-reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sp-overview { padding-bottom: 4px; }
    .sp-overview-card { flex-direction: row; border-radius: 16px; }
    .sp-products { grid-template-columns: 1fr; }
    .sp-reviews { grid-template-columns: 1fr; }
    .sp-hero { padding: calc(var(--header-height) + 36px + 16px) 0 36px; }
    .sp-hero-tags { gap: 8px; }
    .sp-tags-below { padding: 14px 0 10px; top: var(--header-height); }
    .site-header.scrolled ~ main .sp-tags-below { top: var(--header-height); }
    .sp-tags-below .sp-hero-tag { padding: 10px 24px; font-size: 0.85rem; }
    .sp-category { padding: 24px 0; scroll-margin-top: 150px; }
    .sp-category-header { margin-bottom: 16px; }
    .sp-product-body { padding: 14px 16px 16px; }
    .sp-product-name { font-size: 1.1rem; }
    .sp-faq { padding: 18px 16px; }
    .sp-faq-q { padding: 14px 16px; gap: 10px; font-size: 0.9rem; }
    .sp-faq-a { padding: 0 16px 0 52px; }
    .sp-faq-item.open .sp-faq-a { padding-bottom: 16px; }
    .sp-section-cta { padding: 28px 0; }
    .sp-section-cta-btns { flex-direction: column; align-items: center; }
    .sp-review-card { padding: 20px; }
}
@media (max-width: 480px) {
    .sp-hero h1 { font-size: 1.6rem; }
    .sp-category-header h2 { font-size: 1.4rem; }
    .sp-faq-a { padding-left: 16px; }
    .sp-tags-below { padding: 12px 0 8px; top: var(--header-height); }
    .sp-tags-below .sp-hero-tag { padding: 12px 18px; font-size: 0.82rem; min-height: 44px; display: inline-flex; align-items: center; }
    .sp-category { scroll-margin-top: 140px; }
}

/* === PORTFOLIO GALLERY === */
.pf-hero-banner { position: relative; overflow: hidden; padding-bottom: 16px; }
.pf-hero-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, var(--color-bg), transparent); pointer-events: none; }
.pf-tabs { display: flex; gap: 6px; justify-content: center; margin-bottom: 28px; background: var(--color-bg-warm); padding: 6px; border-radius: var(--radius-xl); max-width: 560px; margin-left: auto; margin-right: auto; border: 1px solid var(--color-border-light); }
.pf-tab { display: flex; align-items: center; gap: 8px; padding: 14px 28px; border: none; background: transparent; cursor: pointer; font-size: 0.92rem; font-weight: 600; color: var(--color-text-light); border-radius: calc(var(--radius-xl) - 4px); -webkit-transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; letter-spacing: 0.02em; font-family: inherit; }
.pf-tab:hover { color: var(--color-heading); background: rgba(184,134,11,0.04); }
.pf-tab.active { background: var(--color-bg-card); color: var(--color-heading); box-shadow: 0 2px 12px rgba(28,25,23,0.06), 0 1px 3px rgba(28,25,23,0.04); }
.pf-tab.active::after { content: ''; position: absolute; bottom: -1px; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); width: 24px; height: 2.5px; background: linear-gradient(90deg, var(--color-accent), rgba(184,134,11,0.3)); border-radius: 2px; }
.pf-tab-label { white-space: nowrap; }
.pf-tab-count { font-size: 0.72rem; background: var(--color-accent-light); color: var(--color-accent); padding: 2px 8px; border-radius: var(--radius-full); font-weight: 700; min-width: 20px; text-align: center; }
.pf-tab.active .pf-tab-count { background: var(--color-accent); color: white; }
.pf-panel { display: none; animation: pfFadeIn 0.4s ease; }
.pf-panel.active { display: block; }
@keyframes pfFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.pf-category-intro { text-align: center; margin-bottom: 14px; }
.pf-category-title { font-size: 1.6rem; font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--color-heading); font-weight: 700; display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.03em; margin-bottom: 8px; }
.pf-category-en { font-size: 0.55em; font-weight: 400; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-left: 4px; vertical-align: middle; }
.pf-category-desc { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.8; max-width: 640px; margin: 0 auto; }
.pf-gallery-section { padding-top: 20px; padding-bottom: 40px; scroll-margin-top: 100px; }
.pf-crumb-wrap { text-align: left; margin: 10px 0 8px; }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pf-card { position: relative; border-radius: 20px; overflow: hidden; background: var(--color-bg-card); border: 1px solid var(--color-border-light); -webkit-transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94); transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94); display: flex; flex-direction: column; }
.pf-card:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); box-shadow: 0 32px 80px rgba(28,25,23,0.10), 0 8px 24px rgba(28,25,23,0.05); border-color: transparent; }
.pf-card-visual { position: relative; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(145deg, var(--color-bg-alt), var(--color-bg-warm)); }
.pf-card-img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.pf-card:hover .pf-card-img { -webkit-transform: scale(1.06); transform: scale(1.06); }
.pf-card-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(28,25,23,0) 40%, rgba(28,25,23,0.03) 65%, rgba(28,25,23,0.12) 85%, rgba(28,25,23,0.25) 100%); pointer-events: none; -webkit-transition: opacity 0.4s ease; transition: opacity 0.4s ease; }
.pf-card:hover .pf-card-overlay { background: linear-gradient(180deg, rgba(28,25,23,0) 40%, rgba(28,25,23,0.02) 65%, rgba(28,25,23,0.08) 85%, rgba(28,25,23,0.18) 100%); }
.pf-card-badge { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: var(--color-heading); font-size: 0.72rem; font-weight: 600; padding: 5px 14px; border-radius: var(--radius-full); letter-spacing: 0.06em; box-shadow: 0 2px 8px rgba(0,0,0,0.08); -webkit-transform: translateY(-4px); transform: translateY(-4px); opacity: 0; -webkit-transition: all 0.35s ease; transition: all 0.35s ease; }
.pf-card:hover .pf-card-badge { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
.pf-card-featured-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 4px; background: linear-gradient(135deg, var(--color-accent), #D4A017); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); letter-spacing: 0.04em; box-shadow: 0 2px 8px rgba(184,134,11,0.25); z-index: 1; }
.pf-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pf-card-title { font-size: 1.05rem; font-weight: 700; color: var(--color-heading); margin-bottom: 12px; letter-spacing: 0.02em; line-height: 1.4; }
.pf-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.pf-card-meta-item { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--color-text-light); background: var(--color-bg-light); padding: 4px 10px; border-radius: var(--radius-sm); letter-spacing: 0.01em; }
.pf-card-meta-item svg { color: var(--color-accent); flex-shrink: 0; opacity: 0.7; }
.pf-card:hover .pf-card-meta-item svg { opacity: 1; }
.pf-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.pf-pg-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border: 1px solid var(--color-border-light); background: var(--color-bg-card); color: var(--color-text-light); border-radius: var(--radius-md); cursor: pointer; font-size: 0.88rem; font-weight: 500; font-family: inherit; letter-spacing: 0.02em; -webkit-transition: all 0.3s ease; transition: all 0.3s ease; }
.pf-pg-btn:hover { background: var(--color-accent-light); color: var(--color-accent); border-color: var(--color-accent); }
.pf-pg-btn.active { background: var(--color-accent); color: white; border-color: var(--color-accent); font-weight: 700; box-shadow: 0 4px 12px rgba(184,134,11,0.2); }
.pf-pg-btn:disabled, .pf-pg-btn[disabled] { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.pf-cta-section { position: relative; text-align: center; background: linear-gradient(160deg, #FBF6ED 0%, #F5EFE3 60%, #EDE5D5 100%); padding: 56px 0; overflow: hidden; }
.pf-cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 5%, #B8860B 30%, #DAA520 50%, #B8860B 70%, transparent 95%); }
.pf-cta-section::after { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%); pointer-events: none; }
.pf-cta-section .container { position: relative; z-index: 1; }
.pf-cta-section .section-cta-title { font-size: 2rem; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--color-heading); letter-spacing: 0.03em; margin-bottom: 14px; }
.pf-cta-section .section-cta-desc { font-size: 1.02rem; color: var(--color-text-light); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.pf-cta-section .section-cta-title::after { content: ''; display: block; width: 48px; height: 2px; background: linear-gradient(90deg, transparent, #B8860B, transparent); margin: 16px auto 0; border-radius: 1px; }
.pf-cta-section .btn { background: var(--color-btn); color: white; border-color: var(--color-btn); box-shadow: 0 4px 16px rgba(28,25,23,0.12); }
.pf-cta-section .btn:hover { background: var(--color-btn-hover); border-color: var(--color-btn-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,25,23,0.18); }
.pf-cta-section .btn-outline { background: transparent; color: var(--color-btn); border: 2px solid var(--color-btn); box-shadow: none; }
.pf-cta-section .btn-outline:hover { background: var(--color-btn); color: white; }
@media (max-width: 768px) { .pf-cta-section { padding: 40px 0; } }
@media (max-width: 1024px) { .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .pf-tabs { max-width: 100%; } }
@media (max-width: 768px) {
    .pf-tabs { padding: 4px; gap: 4px; margin-bottom: 20px; margin-top: 0; }
    .pf-tab { padding: 12px 18px; font-size: 0.85rem; gap: 6px; }
    .pf-tab-count { font-size: 0.68rem; padding: 2px 6px; }
    .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pf-card { border-radius: 16px; }
    .pf-card-body { padding: 16px 18px 20px; }
    .pf-card-title { font-size: 0.95rem; margin-bottom: 10px; }
    .pf-category-intro { margin-bottom: 8px; }
    .pf-card-meta-item { font-size: 0.72rem; padding: 3px 8px; }
    .pf-gallery-section { padding-top: 16px; padding-bottom: 32px; }
    .pf-pagination { margin-top: 24px; gap: 6px; }
    .pf-pg-btn { min-width: 44px; height: 44px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .pf-gallery-section { padding-top: 12px; padding-bottom: 24px; }
    .pf-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
    .pf-card-visual { aspect-ratio: 4/5; }
    .pf-tabs { flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
    .pf-tab { flex: 1; min-width: 0; justify-content: center; padding: 12px 14px; }
    .pf-category-title { font-size: 1.3rem; }
    .pf-category-en { display: block; margin-left: 0; margin-top: 2px; }
    .pf-pagination { margin-top: 20px; }
}

/* === WORK DETAIL PAGE === */
a.pf-card { text-decoration: none; color: inherit; display: flex; }
a.pf-card:hover .pf-card-title { color: var(--color-accent); }
/* Breadcrumb */
.wd-breadcrumb-section { background: var(--color-bg); padding-top: var(--header-height); }
.wd-breadcrumb { padding: 24px 0 0; }
.wd-breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--color-text-muted); flex-wrap: wrap; }
.wd-breadcrumb a { color: var(--color-text-light); text-decoration: none; transition: color 0.2s; }
.wd-breadcrumb a:hover { color: var(--color-accent); }
.wd-bc-sep { opacity: 0.4; font-size: 0.75rem; }
.wd-bc-current { color: var(--color-accent); font-weight: 500; }

/* Showcase (Gallery + Info) */
.wd-showcase { padding: 24px 0 36px; }
.wd-showcase-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: stretch; }

/* Main Image */
.wd-main-image { position: relative; border-radius: 20px; overflow: hidden; background: linear-gradient(145deg, var(--color-bg-alt), var(--color-bg-warm)); box-shadow: 0 20px 60px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.04); cursor: zoom-in; }
.wd-main-image img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; transition: opacity 0.3s ease; }
.wd-img-counter { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.5); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; font-size: 0.72rem; font-weight: 500; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.06em; }
.wd-img-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.85); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--color-heading); box-shadow: 0 2px 10px rgba(0,0,0,0.1); opacity: 0; transition: opacity 0.3s ease, background 0.2s; }
.wd-main-image:hover .wd-img-nav { opacity: 1; }
.wd-img-nav:hover { background: rgba(255,255,255,0.95); }
.wd-img-prev { left: 14px; }
.wd-img-next { right: 14px; }

/* Thumbnail Strip */
.wd-thumb-strip { display: flex; gap: 10px; margin-top: 14px; justify-content: center; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.wd-thumb { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: var(--color-bg-alt); transition: all 0.3s ease; flex-shrink: 0; }
.wd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wd-thumb:hover { border-color: var(--color-accent); opacity: 0.85; }
.wd-thumb.active { border-color: var(--color-accent); box-shadow: 0 2px 8px rgba(184,134,11,0.25); }

/* Info Panel */
.wd-info-col { display: flex; flex-direction: column; }
.wd-category-badge { display: inline-block; background: var(--color-accent-light); color: var(--color-accent); font-size: 0.78rem; font-weight: 600; padding: 3px 12px; border-radius: 20px; letter-spacing: 0.06em; margin-bottom: 10px; }
.wd-title { font-size: 1.9rem; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--color-heading); margin-bottom: 8px; letter-spacing: 0.02em; line-height: 1.3; }

/* Story Teaser */
.wd-story-teaser-wrap { position: relative; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--color-border-light); }
.wd-story-teaser { font-size: 0.88rem; color: var(--color-text); line-height: 1.65; margin: 0; }
.wd-story-teaser-wrap.collapsed .wd-story-teaser { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.wd-story-teaser-wrap.collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28px; background: linear-gradient(transparent, var(--color-bg-card)); pointer-events: none; }
.wd-story-toggle { display: none; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-size: 0.78rem; color: var(--color-accent); font-weight: 600; padding: 2px 0; font-family: inherit; }
.wd-story-toggle svg { transition: transform 0.3s; flex-shrink: 0; }
.wd-story-teaser-wrap.collapsed .wd-story-toggle { display: inline-flex; }
.wd-story-teaser-wrap.expanded .wd-story-toggle { display: inline-flex; }
.wd-story-teaser-wrap.expanded .wd-story-toggle svg { transform: rotate(180deg); }
.wd-story-teaser-wrap.no-overflow::after { display: none; }

/* Generic expandable text component */
.expandable-text { position: relative; }
.expandable-text.collapsed > p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0; }
.expandable-text.collapsed::after { content: ''; position: absolute; bottom: 18px; left: 0; right: 0; height: 24px; background: linear-gradient(transparent, var(--color-bg-card)); pointer-events: none; }
.expandable-text > .expand-toggle { display: none; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-size: 0.75rem; color: var(--color-accent); font-weight: 600; padding: 0; margin-top: 4px; font-family: inherit; }
.expandable-text > .expand-toggle svg { transition: transform 0.3s; flex-shrink: 0; }
.expandable-text.collapsed > .expand-toggle { display: inline-flex; }
.expandable-text.expanded > .expand-toggle { display: inline-flex; }
.expandable-text.expanded > .expand-toggle svg { transform: rotate(180deg); }
.expandable-text.no-overflow::after { display: none; }

/* Specs */
.wd-specs { margin-bottom: 16px; }
.wd-spec-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--color-border-light); }
.wd-spec-row:last-child { border-bottom: none; }
.wd-spec-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.wd-spec-text { display: flex; flex-direction: column; gap: 2px; }
.wd-spec-label { font-size: 0.72rem; color: var(--color-text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.wd-spec-value { font-size: 0.92rem; color: var(--color-heading); font-weight: 600; }

/* Trust Row */
.wd-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; padding: 10px 12px; background: var(--color-bg-alt); border-radius: 12px; }
.wd-trust-item { display: flex; align-items: center; gap: 4px; font-size: 0.72rem; color: var(--color-text); font-weight: 500; flex: 1; min-width: 85px; }
.wd-trust-item svg { color: var(--color-accent); flex-shrink: 0; width: 16px; height: 16px; }

/* CTA Actions */
.wd-info-panel { background: var(--color-bg-card); border-radius: 20px; padding: 20px 24px; border: 1px solid var(--color-border-light); box-shadow: 0 8px 32px rgba(28,25,23,0.05), 0 2px 8px rgba(28,25,23,0.03); flex: 1; }
.wd-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.wd-cta-primary { display: inline-flex; align-items: center; gap: 8px; flex: 1; justify-content: center; min-height: 42px; font-size: 0.9rem; }
.wd-cta-primary svg { opacity: 0.8; }
.wd-cta-secondary { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; }
.wd-cta-secondary svg { opacity: 0.7; }
.wd-cta-note { font-size: 0.78rem; color: var(--color-text-muted); text-align: center; letter-spacing: 0.02em; }

/* Guarantee Bar */
.wd-guarantee-bar { padding: 40px 0; background: var(--color-bg-warm); border-top: 1px solid var(--color-border-light); border-bottom: 1px solid var(--color-border-light); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(28,25,23,0.03); }
.wd-guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.wd-guarantee-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; background: rgba(255,255,255,0.6); border-radius: 16px; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 2px 8px rgba(28,25,23,0.03); }
.wd-guarantee-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.wd-guarantee-item h3 { font-size: 0.92rem; font-weight: 700; color: var(--color-heading); letter-spacing: 0.02em; }
.wd-guarantee-item p { font-size: 0.8rem; color: var(--color-text-light); line-height: 1.6; max-width: 200px; }

/* Story Section — 可编辑商品详情 */
.wd-story-section { padding: 40px 0 36px; background: var(--color-bg-light); }
.wd-story-header { text-align: center; margin-bottom: 32px; }
.wd-section-eyebrow { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; color: var(--color-accent); text-transform: uppercase; margin-bottom: 8px; }
.wd-section-title { font-size: 1.6rem; font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--color-heading); margin-bottom: 8px; letter-spacing: 0.02em; }
.wd-section-subtitle { font-size: 0.92rem; color: var(--color-text-light); }
.wd-story-content { position: relative; max-width: 780px; margin: 0 auto; padding: 0 40px; font-size: 0.95rem; color: var(--color-text); line-height: 1.9; }
.wd-story-content::before, .wd-story-content::after { content: ''; position: absolute; top: 20px; bottom: 20px; width: 1px; background: linear-gradient(180deg, transparent 0%, var(--color-accent) 12%, rgba(184,134,11,0.25) 50%, var(--color-accent) 88%, transparent 100%); opacity: 0.35; }
.wd-story-content::before { left: 6px; box-shadow: 0 -4px 0 -0.5px rgba(184,134,11,0.45), 0 4px 0 -0.5px rgba(184,134,11,0.45); }
.wd-story-content::after { right: 6px; box-shadow: 0 -4px 0 -0.5px rgba(184,134,11,0.45), 0 4px 0 -0.5px rgba(184,134,11,0.45); }
.wd-story-content p { margin-bottom: 18px; }
.wd-story-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--color-heading); margin: 32px 0 12px; letter-spacing: 0.02em; }
.wd-story-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-heading); margin: 24px 0 8px; }
.wd-story-content img { width: 100%; height: auto; border-radius: 14px; margin: 20px 0; box-shadow: 0 8px 24px rgba(28,25,23,0.06); }
.wd-story-content blockquote { margin: 24px 0; padding: 20px 24px; background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%); border-radius: 12px; border-left: 3px solid var(--color-accent); font-size: 0.95rem; font-weight: 500; color: var(--color-heading); line-height: 1.7; font-style: italic; }
.wd-story-content blockquote p { margin-bottom: 0; }
.wd-story-content ul, .wd-story-content ol { margin: 14px 0 18px 20px; }
.wd-story-content li { margin-bottom: 6px; }
.wd-story-content figure { margin: 24px 0; }
.wd-story-content figcaption { text-align: center; font-size: 0.8rem; color: var(--color-text-muted); margin-top: 8px; }
.wd-story-content a { color: var(--color-accent); font-weight: 500; }

/* Craftsmanship Process */
.wd-process-section { padding: 40px 0; background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%); }
.wd-process-header { text-align: center; margin-bottom: 36px; }
.wd-process-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.wd-step { flex: 1; max-width: 220px; text-align: center; padding: 0 16px; }
.wd-step-number { font-size: 2.6rem; font-weight: 900; background: linear-gradient(135deg, var(--color-accent), #D4A017); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 14px; letter-spacing: 0.02em; opacity: 0.7; }
.wd-step-icon { width: 64px; height: 64px; border-radius: 20px; background: var(--color-bg-card); border: 1px solid var(--color-border-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--color-accent); box-shadow: 0 4px 16px rgba(28,25,23,0.04); -webkit-transition: all 0.3s ease; transition: all 0.3s ease; }
.wd-step:hover .wd-step-icon { box-shadow: 0 8px 24px rgba(184,134,11,0.12); border-color: var(--color-accent); -webkit-transform: translateY(-4px); transform: translateY(-4px); }
.wd-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--color-heading); margin-bottom: 8px; letter-spacing: 0.02em; }
.wd-step p { font-size: 0.82rem; color: var(--color-text-light); line-height: 1.65; }
.wd-step-connector { flex-shrink: 0; color: var(--color-accent); opacity: 0.3; padding-top: 50px; }

/* Related Works */
.wd-related-section { background: var(--color-bg); padding: 40px 0; border-top: 1px solid var(--color-border-light); }
.wd-related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.wd-related-title { font-size: 1.3rem; font-weight: 700; color: var(--color-heading); letter-spacing: 0.03em; }
.wd-related-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--color-accent); font-weight: 600; text-decoration: none; transition: gap 0.2s; white-space: nowrap; }
.wd-related-more:hover { gap: 8px; }
.wd-related-section .pf-card { text-decoration: none; color: inherit; }

/* FAQ Section */
.wd-faq-section { padding: 40px 0 36px; background: var(--color-bg-light); }
.wd-faq-header { text-align: center; margin-bottom: 32px; }
.wd-faq-list { max-width: 720px; margin: 0 auto; background: var(--color-bg-card); border-radius: 18px; border: 1px solid var(--color-border-light); box-shadow: 0 4px 20px rgba(28,25,23,0.04); overflow: hidden; }
.wd-faq-item { border-bottom: 1px solid var(--color-border-light); }
.wd-faq-item:last-child { border-bottom: none; }
.wd-faq-q { width: 100%; display: flex; align-items: center; gap: 14px; padding: 18px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 0.92rem; font-weight: 600; color: var(--color-heading); text-align: left; letter-spacing: 0.01em; transition: color 0.2s, background 0.2s; }
.wd-faq-q:hover { color: var(--color-accent); background: rgba(184,134,11,0.03); }
.wd-faq-q-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--color-accent-light); color: var(--color-accent); font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.wd-faq-item.open .wd-faq-q-icon { background: var(--color-accent); color: #fff; }
.wd-faq-q-text { flex: 1; }
.wd-faq-arrow { flex-shrink: 0; color: var(--color-text-muted); transition: transform 0.3s ease; }
.wd-faq-item.open .wd-faq-arrow { transform: rotate(180deg); color: var(--color-accent); }
.wd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.wd-faq-item.open .wd-faq-a { max-height: 300px; padding: 0 24px 20px 64px; }
.wd-faq-a p { font-size: 0.88rem; color: var(--color-text); line-height: 1.8; margin: 0; }

/* Final CTA */
.wd-final-cta { padding: 44px 0; background: linear-gradient(135deg, var(--color-heading) 0%, #2C2825 50%, #3D3632 100%); position: relative; overflow: hidden; }
.wd-final-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.15) 0%, transparent 70%); pointer-events: none; }
.wd-final-cta::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%); pointer-events: none; }
.wd-final-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.wd-final-cta-inner h2 { font-size: 1.5rem; font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; color: #F5F0E8; margin-bottom: 10px; letter-spacing: 0.02em; line-height: 1.4; }
.wd-final-cta-inner p { font-size: 0.9rem; color: rgba(245,240,232,0.65); margin-bottom: 24px; line-height: 1.7; }
.wd-final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.wd-final-cta .btn { background: var(--color-accent); border-color: var(--color-accent); color: #fff; min-height: 46px; padding: 0 28px; font-size: 0.92rem; }
.wd-final-cta .btn:hover { background: #D4A017; border-color: #D4A017; box-shadow: 0 8px 28px rgba(184,134,11,0.3); }
.wd-final-cta .btn-outline { background: transparent; border-color: rgba(245,240,232,0.35); color: rgba(245,240,232,0.85); }
.wd-final-cta .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,240,232,0.55); color: #fff; }

/* Mobile Sticky CTA */
.wd-mobile-cta { display: none; }
@media (max-width: 768px) {
    .wd-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); display: flex; gap: 10px; align-items: center; box-shadow: 0 -4px 20px rgba(28,25,23,0.08); transform: translateY(100%); transition: transform 0.35s ease; visibility: hidden; }
    .wd-mobile-cta.visible { transform: translateY(0); visibility: visible; }
    .wd-mobile-cta-btn { flex: 1; text-align: center; min-height: 46px; font-size: 0.95rem; }
    .wd-mobile-cta-link { flex-shrink: 0; padding: 12px 20px; font-size: 0.88rem; color: var(--color-accent); font-weight: 600; text-decoration: none; border: 1.5px solid var(--color-accent); border-radius: var(--radius-xl); }
    .wd-final-cta { padding-bottom: 90px; }
}

/* Work Detail Responsive */
@media (max-width: 1024px) {
    .wd-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .wd-info-col { position: static; }
    .wd-guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .wd-process-steps { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .wd-step-connector { display: none; }
    .wd-step { max-width: 45%; }
    .wd-showcase { padding: 20px 0 40px; }
    .wd-guarantee-bar { padding: 36px 0; }
    .wd-story-section { padding: 40px 0 36px; }
    .wd-process-section { padding: 40px 0; }
    .wd-faq-section { padding: 40px 0 36px; }
    .wd-related-section { padding: 40px 0; }
    .wd-final-cta { padding: 40px 0; }
}
@media (max-width: 768px) {
    .wd-showcase { padding: 16px 0 36px; }
    .wd-showcase-grid { gap: 28px; }
    .wd-main-image { border-radius: 16px; }
    .wd-img-nav { opacity: 0.8; width: 36px; height: 36px; }
    .wd-thumb { width: 60px; height: 60px; border-radius: 10px; }
    .wd-title { font-size: 1.5rem; margin-bottom: 12px; }
    .wd-trust-row { flex-direction: column; gap: 10px; padding: 14px; }
    .wd-trust-item { min-width: 0; }
    .wd-actions { flex-direction: column; }
    .wd-cta-primary, .wd-cta-secondary { text-align: center; justify-content: center; }
    .wd-info-panel { padding: 18px 16px; border-radius: 16px; }
    .wd-guarantee-bar { padding: 36px 0; }
    .wd-guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .wd-guarantee-item p { max-width: none; }
    .wd-story-section { padding: 36px 0 28px; }
    .wd-story-content { font-size: 0.9rem; padding: 0 28px; }
    .wd-story-content h2 { font-size: 1.1rem; margin: 24px 0 10px; }
    .wd-story-content blockquote { padding: 16px 20px; }
    .wd-process-section { padding: 36px 0; }
    .wd-process-steps { flex-direction: column; align-items: center; gap: 24px; }
    .wd-step { max-width: 100%; padding: 0; }
    .wd-step-number { font-size: 2rem; }
    .wd-faq-section { padding: 36px 0 28px; }
    .wd-faq-list { border-radius: 14px; }
    .wd-faq-q { font-size: 0.88rem; padding: 14px 18px; }
    .wd-faq-item.open .wd-faq-a { padding: 0 18px 16px 52px; }
    .wd-final-cta { padding: 36px 0; }
    .wd-final-actions { flex-direction: column; align-items: center; }
    .wd-final-actions .btn { width: 100%; max-width: 320px; text-align: center; }
    .wd-related-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
    .wd-thumb { width: 52px; height: 52px; }
    .wd-thumb-strip { gap: 8px; }
    .wd-spec-row { gap: 10px; }
    .wd-spec-icon { width: 28px; height: 28px; border-radius: 7px; }
    .wd-guarantee-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .wd-guarantee-icon { width: 48px; height: 48px; border-radius: 12px; }
    .wd-guarantee-item h3 { font-size: 0.85rem; }
    .wd-guarantee-item p { font-size: 0.75rem; }
    .wd-showcase { padding: 14px 0 28px; }
    .wd-guarantee-bar { padding: 28px 0; }
    .wd-story-section { padding: 28px 0 24px; }
    .wd-story-content { padding: 0 16px; }
    .wd-story-content::before, .wd-story-content::after { display: none; }
    .wd-process-section { padding: 28px 0; }
    .wd-faq-section { padding: 28px 0 24px; }
    .wd-final-cta { padding: 32px 0; }
    .wd-section-title { font-size: 1.25rem; }
    .wd-final-cta-inner h2 { font-size: 1.15rem; }
}

.footer-bottom,
.footer-bottom * { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 400; letter-spacing: 0.02em; line-height: 1.6; text-decoration: none; font-family: var(--font-primary); }
.footer-bottom a:hover { color: #DAA520; }
.footer-legal a:hover { color: #DAA520 !important; }

/* aspect-ratio 回退 */
@supports not (aspect-ratio: 1/1) {
    .hero-image-wrapper { height: 0; padding-top: 125%; position: relative; overflow: hidden; }
    .hero-image-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .portfolio-placeholder { height: 0; padding-top: 75%; position: relative; overflow: hidden; }
    .portfolio-placeholder img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .testimonial-photo { height: 0; padding-top: 100%; position: relative; overflow: hidden; }
    .blog-card-image { height: 0; padding-top: 62.5%; position: relative; overflow: hidden; }
    .blog-card-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .psc-visual-bg { height: 0; padding-top: 100%; position: relative; overflow: hidden; }
    .psc-visual-bg img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .about-image { height: 0; padding-top: 112.5%; position: relative; overflow: hidden; }
    .about-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .sp-product-visual { height: 0; padding-top: 100%; position: relative; overflow: hidden; }
    .sp-product-visual img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .sp-review-photo { height: 0; padding-top: 100%; position: relative; overflow: hidden; }
    .pf-card-visual { height: 0; padding-top: 100%; position: relative; overflow: hidden; }
    .pf-card-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .wd-main-image { height: 0; padding-top: 125%; position: relative; overflow: hidden; }
    .wd-main-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .pd-related-image { height: 0; padding-top: 75%; position: relative; overflow: hidden; }
    .pd-related-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .pd-review-photo { height: 0; padding-top: 75%; position: relative; overflow: hidden; }
    .pd-review-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .pd-main-image { height: 0; padding-top: 125%; position: relative; overflow: hidden; }
    .pd-main-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    /* WYSIWYG iframe 16:9 回退 */
    .faq-answer-inner iframe, .about-story-text iframe, .sp-faq-a iframe, .wd-faq-a iframe, .legal-content iframe, .bp-body iframe { height: 0; padding-top: 56.25%; position: relative; overflow: hidden; }
}

/* ═══════════════════════════════════════════
   Inline Style Extraction — Reusable Classes
   ═══════════════════════════════════════════ */

/* --- Global: Image Cover --- */
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.sp-review-photo-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- Global: CTA Section Pattern --- */
.section-cta-title { margin-bottom: 12px; }
.section-cta-desc { color: var(--color-text-light); margin-bottom: 32px; }
.section-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Homepage --- */
.hero-float-deco { position: absolute; display: flex; align-items: center; justify-content: center; z-index: 1; animation: heroFloatDot 7s ease-in-out infinite; }
.hero-float-deco-1 { top: 8%; left: 10%; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, rgba(184,134,11,0.12), rgba(184,134,11,0.04)); border: 1px solid rgba(184,134,11,0.08); font-size: 1.2rem; }
.hero-float-deco-2 { bottom: 15%; right: 8%; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, rgba(28,25,23,0.06), rgba(28,25,23,0.02)); border: 1px solid rgba(28,25,23,0.06); font-size: 1rem; animation-duration: 9s; animation-delay: 1s; }
.hp-cta-wrap { margin-top: 28px; }
.cta-section .hp-cta-note { margin-top: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* --- About --- */
.about-story-title { margin-bottom: 22px; letter-spacing: 0.03em; }
.about-story-text { line-height: 1.9; margin-bottom: 16px; }
/* --- Services --- */
.sp-hero { padding-bottom: 6px; }
.sp-breadcrumb-wrap { text-align: left; margin-top: 28px; }
.sp-popular-badge { display: inline-block; background: linear-gradient(135deg, var(--color-accent), #D4A017); color: white; font-size: 0.65rem; padding: 4px 12px; border-radius: 20px; vertical-align: middle; margin-left: 8px; font-weight: 600; letter-spacing: 0.03em; }

/* --- FAQ --- */
/* --- Blog --- */
.blog-sidebar-search { display: flex; gap: 8px; }
.blog-sidebar-search .form-control { flex: 1; padding: 10px 14px; }
.blog-sidebar-cat-list { display: flex; flex-direction: column; gap: 4px; }
.blog-sidebar-cat-link { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--color-border-light); font-weight: 400; color: var(--color-text); text-decoration: none; }
.blog-sidebar-cat-link.active { font-weight: 600; color: var(--color-btn); }
.blog-sidebar-cat-count { font-size: 0.8rem; background: var(--color-bg); padding: 2px 8px; border-radius: 10px; }
.blog-sidebar-about { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.8; margin-bottom: 16px; }

/* --- Portfolio CTA --- */

/* --- Order Sidebar --- */
.order-sidebar-heading { margin-bottom: 16px; }
.order-sidebar-h3 { margin-bottom: 24px; font-size: 1.2rem; }
.order-steps-list { display: flex; flex-direction: column; gap: 16px; }
.order-step-row { display: flex; gap: 12px; align-items: flex-start; }
.order-step-number { width: 28px; height: 28px; background: var(--color-btn); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.order-step-title { font-weight: 500; font-size: 0.92rem; margin-bottom: 2px; color: var(--color-heading); }
.order-step-desc { font-size: 0.82rem; color: var(--color-text-light); margin: 0; }
.order-tips-list { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; color: var(--color-text); }
.order-tip-item { margin: 0; }
.order-contact-text { font-size: 0.88rem; color: var(--color-text); margin-bottom: 8px; }
.order-contact-text:last-child { margin-bottom: 0; }
.order-related-list { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.order-related-link { color: var(--color-text); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.order-related-link:hover { color: var(--color-accent); }

/* --- Contact --- */
.contact-intro-title { margin-bottom: 12px; }
.contact-intro-desc { color: var(--color-text-light); margin-bottom: 36px; }
.form-section-heading { margin-bottom: 24px; font-size: 1.2rem; }

/* ═══ Single Blog Post (bp-*) ═══ */
.bp-container-narrow { max-width: 780px; margin-left: auto; margin-right: auto; }
.bp-breadcrumb-section { background: var(--color-bg); padding-top: var(--header-height); }
.bp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--color-text-muted); padding: 20px 0 0; flex-wrap: wrap; }
.bp-breadcrumb a { color: var(--color-text-light); text-decoration: none; transition: color 0.2s; }
.bp-breadcrumb a:hover { color: var(--color-accent); }
.bp-bc-sep { color: var(--color-accent); font-size: 0.72rem; opacity: 0.5; font-weight: 600; }
.bp-bc-current { color: var(--color-heading); font-weight: 600; }
.bp-header { padding: 32px 0 0; text-align: center; }
.bp-category-tag { display: inline-block; padding: 4px 16px; background: linear-gradient(135deg, #1C1917, #2C2825); color: #fff; font-size: 0.76rem; font-weight: 500; border-radius: 20px; letter-spacing: 0.04em; text-decoration: none; margin-bottom: 20px; transition: opacity 0.2s; }
.bp-category-tag:hover { opacity: 0.85; color: #fff; }
.bp-title { font-size: 2rem; font-weight: 800; line-height: 1.35; color: var(--color-heading); margin-bottom: 16px; letter-spacing: -0.01em; }
.bp-lead { font-size: 1.05rem; color: var(--color-text-light); line-height: 1.8; max-width: 600px; margin: 0 auto 24px; }
.bp-meta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 0.85rem; color: var(--color-text-muted); padding-bottom: 28px; border-bottom: 1px solid var(--color-border-light); }
.bp-meta-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.bp-meta-item svg { flex-shrink: 0; opacity: 0.6; }
.bp-hero-image { margin: 0; overflow: hidden; }
.bp-hero-image img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.bp-body { padding: 40px 0; }
.bp-body p { font-size: 1rem; line-height: 1.9; color: var(--color-text); margin-bottom: 1.6em; }
.bp-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--color-heading); margin: 2em 0 0.8em; line-height: 1.4; }
.bp-body h3 { font-size: 1.25rem; font-weight: 600; color: var(--color-heading); margin: 1.6em 0 0.6em; line-height: 1.4; }
.bp-body h4 { font-size: 1.1rem; font-weight: 600; color: var(--color-heading); margin: 1.4em 0 0.5em; }
.bp-body ul, .bp-body ol { padding-left: 1.5em; margin-bottom: 1.6em; }
.bp-body li { margin-bottom: 0.5em; line-height: 1.8; }
.bp-body blockquote { border-left: 3px solid var(--color-accent); padding: 16px 24px; margin: 2em 0; background: var(--color-bg-alt); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--color-text); }
.bp-body blockquote p:last-child { margin-bottom: 0; }
.bp-body img { border-radius: var(--radius-md); margin: 1.5em auto; display: block; max-width: 100%; height: auto; }
.bp-body figure { margin: 2em 0; text-align: center; }
.bp-body figcaption { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 8px; }
.bp-body a { color: var(--color-btn); text-decoration: underline; text-decoration-color: rgba(184,134,11,0.3); text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.bp-body a:hover { text-decoration-color: var(--color-accent); }
.bp-body pre { background: #1C1917; color: #E7E5E4; padding: 20px 24px; border-radius: var(--radius-md); overflow-x: auto; font-size: 0.88rem; line-height: 1.6; margin: 1.5em 0; }
.bp-body code { font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; font-size: 0.88em; }
.bp-body :not(pre) > code { background: var(--color-bg-alt); padding: 2px 8px; border-radius: 4px; color: var(--color-btn); }
.bp-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.92rem; }
.bp-body th, .bp-body td { padding: 10px 14px; border: 1px solid var(--color-border-light); text-align: left; }
.bp-body th { background: var(--color-bg-alt); font-weight: 600; color: var(--color-heading); }
.bp-body hr { border: none; border-top: 1px solid var(--color-border-light); margin: 2.5em 0; }
.bp-footer { padding: 0 0 40px; }
.bp-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--color-border-light); margin-bottom: 20px; }
.bp-tags-label { font-size: 0.82rem; font-weight: 600; color: var(--color-heading); margin-right: 4px; }
.bp-tag { display: inline-block; padding: 3px 12px; font-size: 0.78rem; color: var(--color-text-light); border: 1px solid var(--color-border-light); border-radius: 14px; text-decoration: none; transition: all 0.25s; }
.bp-tag:hover { color: var(--color-accent); border-color: rgba(184,134,11,0.25); background: rgba(184,134,11,0.04); }
.bp-share { display: flex; align-items: center; gap: 10px; }
.bp-share-label { font-size: 0.82rem; font-weight: 600; color: var(--color-heading); }
.bp-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-border-light); background: transparent; color: var(--color-text-light); cursor: pointer; transition: all 0.25s; text-decoration: none; }
.bp-share-btn:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(184,134,11,0.04); }
.bp-nav-section { padding: 0 0 48px; }
.bp-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bp-nav-card { display: flex; flex-direction: column; gap: 8px; padding: 20px 24px; background: var(--color-bg-card); border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); text-decoration: none; transition: all 0.3s; }
.bp-nav-card:hover { border-color: transparent; box-shadow: 0 8px 30px rgba(28,25,23,0.08); transform: translateY(-2px); }
.bp-nav-prev { text-align: left; }
.bp-nav-next { text-align: right; }
.bp-nav-direction { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.02em; }
.bp-nav-title { font-size: 0.95rem; font-weight: 500; color: var(--color-heading); line-height: 1.5; }
.bp-nav-card:hover .bp-nav-title { color: var(--color-btn); }
.bp-related-section { padding-top: 48px; padding-bottom: 48px; }
.bp-related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.bp-related-title { font-size: 1.35rem; font-weight: 700; color: var(--color-heading); margin: 0; }
.bp-related-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 500; color: var(--color-btn); text-decoration: none; transition: gap 0.2s; }
.bp-related-more:hover { gap: 10px; }
.bp-cta-section { padding-bottom: 64px; }
.bp-cta-card { text-align: center; padding: 48px 32px; background: linear-gradient(135deg, var(--color-bg-alt), #fff); border: 1px solid var(--color-border-light); border-radius: var(--radius-xl); }
.bp-cta-title { font-size: 1.5rem; font-weight: 700; color: var(--color-heading); margin-bottom: 12px; }
.bp-cta-desc { font-size: 0.95rem; color: var(--color-text-light); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.bp-cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.bp-cta-primary, .bp-cta-secondary { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 768px) {
    .bp-title { font-size: 1.55rem; }
    .bp-lead { font-size: 0.95rem; }
    .bp-meta { gap: 12px; font-size: 0.8rem; }
    .bp-hero-image img { max-height: 320px; }
    .bp-body { padding: 28px 0; }
    .bp-body h2 { font-size: 1.3rem; }
    .bp-body h3 { font-size: 1.15rem; }
    .bp-nav-grid { grid-template-columns: 1fr; gap: 12px; }
    .bp-cta-card { padding: 36px 20px; }
    .bp-cta-title { font-size: 1.25rem; }
    .bp-related-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .bp-cta-actions { flex-direction: column; }
    .bp-tag { padding: 6px 14px; font-size: 0.82rem; }
    .bp-share-btn { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
    .bp-title { font-size: 1.35rem; }
    .bp-header { padding-top: 20px; }
    .bp-hero-image img { max-height: 240px; }
    .bp-body p { font-size: 0.95rem; }
    .bp-body blockquote { padding: 12px 16px; margin: 1.5em 0; }
    .bp-nav-card { padding: 16px 18px; }
    .bp-cta-card { padding: 28px 16px; }
    .bp-cta-title { font-size: 1.1rem; }
    .bp-cta-actions { flex-direction: column; }
    .bp-cta-actions .btn { width: 100%; justify-content: center; }
}
/* Product Detail — HOT Badge */
.pd-hot-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #E8590C, #D9480F); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; padding: 5px 14px; border-radius: var(--radius-xl); margin-left: 12px; vertical-align: middle; box-shadow: 0 2px 8px rgba(232,89,12,0.25); animation: hotPulse 2s ease-in-out infinite; }
.pd-hot-badge::before { content: "🔥"; font-size: 0.82rem; }
@keyframes hotPulse { 0%,100% { box-shadow: 0 2px 8px rgba(232,89,12,0.25); } 50% { box-shadow: 0 2px 16px rgba(232,89,12,0.45); } }

/* ============================================================
   Product Detail Pages — 对标作品展示详情页 (Redesigned 2026)
   ============================================================ */

/* Breadcrumb */
.pd-breadcrumb-section { background: var(--color-bg); padding-top: var(--header-height); }
.pd-breadcrumb { padding: 14px 0 0; }
.pd-breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--color-text-muted); flex-wrap: wrap; }
.pd-breadcrumb a { color: var(--color-text-light); text-decoration: none; transition: color 0.2s; }
.pd-breadcrumb a:hover { color: var(--color-accent); }
.pd-bc-sep { opacity: 0.4; font-size: 0.75rem; }
.pd-bc-current { color: var(--color-accent); font-weight: 500; }

/* Showcase (Gallery + Info/Order Panel) */
.pd-showcase { padding: 12px 0 36px; }
.pd-showcase-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: stretch; }

/* Main Image */
.pd-main-image { position: relative; border-radius: 20px; overflow: hidden; background: linear-gradient(145deg, var(--color-bg-alt), var(--color-bg-warm)); box-shadow: 0 20px 60px rgba(28,25,23,0.08), 0 4px 16px rgba(28,25,23,0.04); cursor: zoom-in; }
.pd-main-image img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; transition: opacity 0.3s ease; }
.pd-img-counter { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.5); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; font-size: 0.72rem; font-weight: 500; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.06em; }
.pd-img-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.85); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--color-heading); box-shadow: 0 2px 10px rgba(0,0,0,0.1); opacity: 0; transition: opacity 0.3s ease, background 0.2s; }
.pd-main-image:hover .pd-img-nav { opacity: 1; }
.pd-img-nav:hover { background: rgba(255,255,255,0.95); }
.pd-img-prev { left: 14px; }
.pd-img-next { right: 14px; }

/* Thumbnail Strip */
.pd-thumb-strip { display: flex; gap: 10px; margin-top: 14px; justify-content: center; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.pd-thumb { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: var(--color-bg-alt); transition: all 0.3s ease; flex-shrink: 0; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb:hover { border-color: var(--color-accent); opacity: 0.85; }
.pd-thumb.active { border-color: var(--color-accent); box-shadow: 0 2px 8px rgba(184,134,11,0.25); }

/* Info/Order Panel (sticky) */
.pd-info-col { display: flex; flex-direction: column; }
.pd-info-panel { background: var(--color-bg-card); border-radius: 20px; padding: 16px 18px; border: 1px solid var(--color-border-light); box-shadow: 0 8px 32px rgba(28,25,23,0.05), 0 2px 8px rgba(28,25,23,0.03); flex: 1; position: -webkit-sticky; position: sticky; top: calc(var(--header-height) + 24px); z-index: 5; }
.pd-category-badge { display: inline-block; background: var(--color-accent-light); color: var(--color-accent); font-size: 0.78rem; font-weight: 600; padding: 3px 12px; border-radius: var(--radius-full); letter-spacing: 0.06em; margin-bottom: 6px; }
.pd-title { font-size: 1.5rem; font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--color-heading); margin-bottom: 4px; letter-spacing: 0.02em; line-height: 1.3; }
.pd-tagline { font-size: 0.88rem; color: var(--color-accent); font-style: italic; margin-bottom: 10px; letter-spacing: 0.02em; font-weight: 500; }

/* Specs in Panel */
.pd-specs { margin-bottom: 12px; }
.pd-spec-row { display: flex; align-items: center; gap: 0; padding: 5px 0; }
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-label { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 500; white-space: nowrap; }
.pd-spec-value { font-size: 0.88rem; color: var(--color-heading); font-weight: 600; }

/* Trust Row */
.pd-trust-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; padding: 8px 10px; background: var(--color-bg-alt); border-radius: 12px; }
.pd-trust-item { display: flex; align-items: center; gap: 4px; font-size: 0.72rem; color: var(--color-text); font-weight: 500; flex: 1; min-width: 85px; }
.pd-trust-item svg { color: var(--color-accent); flex-shrink: 0; width: 16px; height: 16px; }

/* Inline Order Form */
.pd-inline-form { margin-bottom: 8px; position: relative; z-index: 2; }
.pd-inline-form form { position: relative; }
.pd-inline-form .form-group { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; position: relative; }
.pd-inline-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--color-heading); margin-bottom: 0; white-space: nowrap; min-width: 80px; flex-shrink: 0; }
.pd-inline-form .form-group > select, .pd-inline-form .form-group > input[type="text"], .pd-inline-form .form-group > textarea, .pd-inline-form .form-group > .pd-upload-zone { flex: 1; min-width: 0; position: relative; z-index: 1; }
.pd-inline-form .form-group--block { flex-direction: column; align-items: stretch; }
.pd-inline-form .form-group--block > label { margin-bottom: 4px; }
.pd-inline-form select, .pd-inline-form input[type="text"], .pd-inline-form textarea { width: 100%; padding: 8px 10px; border: 1px solid var(--color-border-light); border-radius: var(--radius-md); font-size: 0.82rem; font-family: inherit; color: var(--color-text); background: var(--color-bg); transition: border-color 0.3s, box-shadow 0.3s; }
.pd-inline-form select:focus, .pd-inline-form input:focus, .pd-inline-form textarea:focus { border-color: var(--color-accent); outline: none; box-shadow: 0 0 0 3px rgba(184,134,11,0.08); }
.pd-inline-form textarea { min-height: 48px; resize: vertical; }
.pd-upload-zone { position: relative; overflow: hidden; border: 2px dashed rgba(184,134,11,0.2); border-radius: var(--radius-lg); padding: 8px 12px; text-align: center; cursor: pointer; transition: border-color 0.3s, background 0.3s; background: rgba(184,134,11,0.02); display: flex; align-items: center; gap: 8px; justify-content: center; }
.pd-upload-zone:hover { border-color: var(--color-accent); background: rgba(184,134,11,0.05); }
.pd-upload-zone svg { color: var(--color-text-muted); margin-bottom: 0; width: 20px; height: 20px; }
.pd-upload-zone p { font-size: 0.78rem; color: var(--color-text-muted); margin: 0; }
.pd-upload-zone.disabled { opacity: 0.45; pointer-events: none; }
.pd-upload-previews { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pd-upload-thumb { position: relative; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; border: 1px solid var(--color-border-light); background: var(--color-bg-alt); flex-shrink: 0; }
.pd-upload-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-upload-remove { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: rgba(0,0,0,0.55); color: #fff; border: none; cursor: pointer; font-size: 11px; line-height: 18px; text-align: center; padding: 0; display: flex; align-items: center; justify-content: center; }
.pd-upload-remove:hover { background: rgba(0,0,0,0.8); }
.pd-upload-counter { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 6px; }
.pd-inline-form .btn { width: 100%; border-radius: var(--radius-xl); min-height: 40px; font-size: 0.88rem; position: relative; z-index: 1; }
.pd-cta-note { font-size: 0.78rem; color: var(--color-text-muted); text-align: center; letter-spacing: 0.02em; margin-top: 8px; }
.pd-sizeguide-section { padding: 40px 0 36px; background: var(--color-bg); }
.pd-sizeguide-header { text-align: center; margin-bottom: 32px; }
.pd-sizeguide-table { max-width: 720px; margin: 0 auto; background: #fff; border-radius: 12px; border: none; overflow: hidden; box-shadow: 0 2px 12px rgba(139,125,107,0.08); }
.pd-sizeguide-table table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.pd-sizeguide-table thead th { background: linear-gradient(135deg, #B8860B 0%, #D4A017 100%); font-size: 0.92rem; font-weight: 600; color: #fff; padding: 14px 16px; text-align: center; letter-spacing: 0.02em; white-space: nowrap; }
.pd-sizeguide-table thead th:first-child { text-align: left; padding-left: 20px; }
.pd-sizeguide-table tbody td { font-size: 0.92rem; color: var(--color-text); padding: 12px 16px; text-align: center; border-bottom: 1px solid #F0EBE1; }
.pd-sizeguide-table tbody td:first-child { text-align: left; padding-left: 20px; font-weight: 400; color: var(--color-text-muted, #8A7D6B); font-size: 0.85rem; }
.pd-sizeguide-table tbody tr:last-child td { border-bottom: none; }
.pd-sizeguide-table tbody tr:nth-child(even) { background: #FDFAF5; }
.pd-sizeguide-recommend { display: inline-block; background: var(--color-accent); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; vertical-align: middle; letter-spacing: 0.04em; }
.pd-form-success { display: none; text-align: center; padding: 24px 16px; }
.pd-form-success.active { display: block; }
.pd-form-success h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-heading); margin-bottom: 8px; }
.pd-form-success p { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.7; }
.pd-form-success .btn { margin-top: 12px; }

/* Guarantee Bar */
.pd-guarantee-bar { padding: 40px 0; background: var(--color-bg-warm); border-top: 1px solid var(--color-border-light); border-bottom: 1px solid var(--color-border-light); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(28,25,23,0.03); }
.pd-guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.pd-guarantee-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; background: rgba(255,255,255,0.6); border-radius: 16px; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 2px 8px rgba(28,25,23,0.03); }
.pd-guarantee-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.pd-guarantee-item h3 { font-size: 0.92rem; font-weight: 700; color: var(--color-heading); letter-spacing: 0.02em; }
.pd-guarantee-item p { font-size: 0.8rem; color: var(--color-text-light); line-height: 1.6; max-width: 200px; }

/* Highlights / Story Section */
.pd-highlights-section { padding: 40px 0 36px; background: var(--color-bg-light); }
.pd-highlights-header { text-align: center; margin-bottom: 32px; }
.pd-section-eyebrow { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; color: var(--color-accent); text-transform: uppercase; margin-bottom: 8px; }
.pd-section-title { font-size: 1.6rem; font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--color-heading); margin-bottom: 8px; letter-spacing: 0.02em; }
.pd-section-subtitle { font-size: 0.92rem; color: var(--color-text-light); }
.pd-highlights-body { display: grid; grid-template-columns: 1fr 0.4fr; gap: 40px; max-width: 880px; margin: 0 auto; }
.pd-highlights-text { font-size: 0.95rem; color: var(--color-text); line-height: 1.9; }
.pd-highlights-text h3 { font-size: 1.08rem; font-weight: 700; color: var(--color-heading); margin: 24px 0 8px; letter-spacing: 0.03em; }
.pd-highlights-text h3:first-child { margin-top: 0; }
.pd-highlights-text p { margin-bottom: 14px; }
.pd-highlights-aside { display: flex; flex-direction: column; gap: 20px; }
.pd-pull-quote { margin: 0; padding: 20px 24px; background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%); border-radius: 12px; border-left: 3px solid var(--color-accent); font-size: 0.95rem; font-weight: 500; color: var(--color-heading); line-height: 1.7; font-style: italic; }
.pd-param-card { padding: 20px; background: var(--color-bg-card); border-radius: 16px; border: 1px solid var(--color-border-light); box-shadow: 0 4px 16px rgba(28,25,23,0.04); }
.pd-param-card-label { display: block; font-size: 0.72rem; color: var(--color-text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.pd-param-card-value { font-size: 1rem; font-weight: 700; color: var(--color-heading); letter-spacing: 0.02em; }

/* Craftsmanship Process */
.pd-process-section { padding: 40px 0; background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg-alt) 100%); }
.pd-process-header { text-align: center; margin-bottom: 36px; }
.pd-process-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.pd-step { flex: 1; max-width: 220px; text-align: center; padding: 0 16px; }
.pd-step-number { font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, var(--color-accent), #D4A017); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 10px; letter-spacing: 0.02em; opacity: 0.65; display: inline-block; }
.pd-step-icon { width: 64px; height: 64px; border-radius: 20px; background: var(--color-bg-card); border: 1px solid var(--color-border-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--color-accent); box-shadow: 0 4px 16px rgba(28,25,23,0.04); transition: all 0.3s ease; }
.pd-step:hover .pd-step-icon { box-shadow: 0 8px 24px rgba(184,134,11,0.12); border-color: var(--color-accent); transform: translateY(-4px); }
.pd-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--color-heading); margin-bottom: 8px; letter-spacing: 0.02em; }
.pd-step p { font-size: 0.82rem; color: var(--color-text-light); line-height: 1.65; }
.pd-step-connector { flex-shrink: 0; color: var(--color-accent); opacity: 0.3; padding-top: 50px; }

/* Reviews */
.pd-reviews-section { padding: 40px 0 36px; background: var(--color-bg); }
.pd-reviews-header { text-align: center; margin-bottom: 32px; }
.pd-reviews-wrapper { position: relative; padding: 0; overflow: hidden; max-width: 100%; }
.pd-reviews-grid { display: flex; gap: 20px; overflow: hidden; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 16px 4px 16px; -webkit-scroll-snap-type: x mandatory; scroll-snap-type: x mandatory; }
.pd-reviews-grid::-webkit-scrollbar { display: none; }
.pd-reviews-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid rgba(184,134,11,0.12); box-shadow: 0 4px 16px rgba(28,25,23,0.10); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.25s ease; color: var(--color-heading); }
.pd-reviews-nav:hover { background: rgba(184,134,11,0.06); box-shadow: 0 6px 20px rgba(28,25,23,0.14); transform: translateY(-50%) scale(1.08); }
.pd-reviews-nav:active { transform: translateY(-50%) scale(0.95); transition-duration: 0.08s; }
.pd-reviews-nav svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }
.pd-reviews-nav.prev { left: 6px; }
.pd-reviews-nav.next { right: 6px; }
.pd-reviews-nav.hidden { opacity: 0; pointer-events: none; }
.pd-review-card { background: linear-gradient(145deg, #FBF6ED 0%, #FFFFFF 70%); padding: 0 20px 16px; border-radius: 20px; border: 1px solid rgba(184,134,11,0.06); position: relative; overflow: hidden; box-shadow: 0 4px 16px rgba(28,25,23,0.03); transition: all 0.35s ease; display: flex; flex-direction: column; min-height: 280px; width: 360px; flex-shrink: 0; -webkit-scroll-snap-align: start; scroll-snap-align: start; }
.pd-review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(28,25,23,0.06); }
.pd-review-photo { width: calc(100% + 40px); margin: 0 -20px; aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--color-bg-alt); flex-shrink: 0; }
.pd-review-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-review-banner { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 14px 10px; background: linear-gradient(to top, rgba(44,40,37,0.72) 0%, rgba(44,40,37,0.25) 60%, transparent 100%); color: #fff; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; pointer-events: none; }
.pd-review-stars { color: #F5A623; font-size: 0.92rem; margin: 10px 0 4px; letter-spacing: 2px; }
.pd-review-text { font-size: 0.88rem; color: var(--color-text); line-height: 1.6; margin-bottom: 0; font-style: italic; flex: 1; }
.pd-review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(184,134,11,0.10); }
.pd-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent), #D4A017); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.pd-review-name { display: block; font-size: 0.88rem; font-weight: 600; color: var(--color-heading); line-height: 1.2; }
.pd-review-location { display: block; font-size: 0.78rem; color: var(--color-text-muted); margin-top: 6px; line-height: 1.2; }

/* Related Series */
.pd-related-section { background: var(--color-bg); padding: 40px 0; border-top: 1px solid var(--color-border-light); }
.pd-related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.pd-related-title { font-size: 1.3rem; font-weight: 700; color: var(--color-heading); letter-spacing: 0.03em; }
.pd-related-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--color-accent); font-weight: 600; text-decoration: none; white-space: nowrap; transition: gap 0.2s; }
.pd-related-more:hover { gap: 8px; }
.pd-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pd-related-card { background: linear-gradient(145deg, #FDF9F2 0%, #FFFFFF 80%); border-radius: 20px; overflow: hidden; border: 1px solid rgba(184,134,11,0.06); transition: all 0.4s cubic-bezier(0.22,0.61,0.36,1); text-decoration: none; color: inherit; display: block; position: relative; box-shadow: 0 4px 16px rgba(28,25,23,0.03); }
.pd-related-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(28,25,23,0.08); border-color: rgba(184,134,11,0.12); }
.pd-related-image { aspect-ratio: 4/3; background: var(--color-bg-alt); overflow: hidden; }
.pd-related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1); }
.pd-related-card:hover .pd-related-image img { transform: scale(1.05); }
.pd-related-info { padding: 20px 20px 16px; }
.pd-related-info h3 { font-size: 1rem; font-weight: 700; color: var(--color-heading); margin-bottom: 6px; letter-spacing: 0.03em; }
.pd-related-info p { font-size: 0.82rem; color: var(--color-text-light); margin-bottom: 10px; line-height: 1.7; }
.pd-related-link { font-size: 0.85rem; font-weight: 600; color: var(--color-accent); }

/* FAQ Section */
.pd-faq-section { padding: 40px 0 36px; background: var(--color-bg-light); }
.pd-faq-header { text-align: center; margin-bottom: 32px; }
.pd-faq-list { max-width: 720px; margin: 0 auto; background: var(--color-bg-card); border-radius: 18px; border: 1px solid var(--color-border-light); box-shadow: 0 4px 20px rgba(28,25,23,0.04); overflow: hidden; }
.pd-faq-item { border-bottom: 1px solid var(--color-border-light); }
.pd-faq-item:last-child { border-bottom: none; }
.pd-faq-q { width: 100%; display: flex; align-items: center; gap: 14px; padding: 18px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 0.92rem; font-weight: 600; color: var(--color-heading); text-align: left; letter-spacing: 0.01em; transition: color 0.2s, background 0.2s; }
.pd-faq-q:hover { color: var(--color-accent); background: rgba(184,134,11,0.03); }
.pd-faq-q-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--color-accent-light); color: var(--color-accent); font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.pd-faq-item.open .pd-faq-q-icon { background: var(--color-accent); color: #fff; }
.pd-faq-q-text { flex: 1; }
.pd-faq-arrow { flex-shrink: 0; color: var(--color-text-muted); transition: transform 0.3s ease; }
.pd-faq-item.open .pd-faq-arrow { transform: rotate(180deg); color: var(--color-accent); }
.pd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.pd-faq-item.open .pd-faq-a { max-height: 300px; padding: 0 24px 20px 64px; }
.pd-faq-a p { font-size: 0.88rem; color: var(--color-text); line-height: 1.8; margin: 0; }

/* Final CTA */
.pd-final-cta { padding: 44px 0; background: linear-gradient(135deg, var(--color-heading) 0%, #2C2825 50%, #3D3632 100%); position: relative; overflow: hidden; }
.pd-final-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.15) 0%, transparent 70%); pointer-events: none; }
.pd-final-cta::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%); pointer-events: none; }
.pd-final-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.pd-final-cta-inner h2 { font-size: 1.5rem; font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; color: #F5F0E8; margin-bottom: 10px; letter-spacing: 0.02em; line-height: 1.4; }
.pd-final-cta-inner p { font-size: 0.9rem; color: rgba(245,240,232,0.65); margin-bottom: 24px; line-height: 1.7; }
.pd-final-cta .btn { background: var(--color-accent); border-color: var(--color-accent); color: #fff; min-height: 46px; padding: 0 28px; font-size: 0.92rem; }
.pd-final-cta .btn:hover { background: #D4A017; border-color: #D4A017; box-shadow: 0 8px 28px rgba(184,134,11,0.3); }
.pd-final-cta .btn-outline { background: transparent; border-color: rgba(245,240,232,0.35); color: rgba(245,240,232,0.85); }
.pd-final-cta .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,240,232,0.55); color: #fff; }
.pd-final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Mobile Sticky CTA */
.pd-mobile-cta { display: none; }
@media (max-width: 768px) {
    .pd-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); display: flex; gap: 10px; align-items: center; box-shadow: 0 -4px 20px rgba(28,25,23,0.08); transform: translateY(100%); transition: transform 0.35s ease; visibility: hidden; }
    .pd-mobile-cta.visible { transform: translateY(0); visibility: visible; }
    .pd-mobile-cta-btn { flex: 1; text-align: center; min-height: 46px; font-size: 0.95rem; }
    .pd-mobile-cta-link { flex-shrink: 0; padding: 12px 20px; font-size: 0.88rem; color: var(--color-accent); font-weight: 600; text-decoration: none; border: 1.5px solid var(--color-accent); border-radius: var(--radius-xl); }
    .pd-final-cta { padding-bottom: 90px; }
}

/* Product Detail Responsive */
@media (max-width: 1024px) {
    .pd-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .pd-info-panel { position: static; }
    .pd-guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .pd-highlights-body { grid-template-columns: 1fr; gap: 24px; }
    .pd-process-steps { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .pd-step-connector { display: none; }
    .pd-step { max-width: 45%; }
    .pd-showcase { padding: 14px 0 36px; }
    .pd-reviews-grid { gap: 16px; overflow-x: auto; -webkit-scroll-snap-type: x mandatory; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .pd-review-card { width: 308px; padding: 0 16px 16px; -webkit-scroll-snap-align: start; scroll-snap-align: start; }
    .pd-reviews-nav { width: 38px; height: 38px; }
    .pd-sizeguide-section { padding: 36px 0 28px; }
}
@media (max-width: 768px) {
    .pd-showcase { padding: 10px 0 32px; }
    .pd-showcase-grid { gap: 28px; }
    .pd-main-image { border-radius: 16px; }
    .pd-img-nav { opacity: 0.8; width: 36px; height: 36px; }
    .pd-thumb { width: 60px; height: 60px; border-radius: 10px; }
    .pd-title { font-size: 1.5rem; margin-bottom: 12px; }
    .pd-trust-row { flex-direction: column; gap: 10px; padding: 14px; }
    .pd-trust-item { min-width: 0; }
    .pd-info-panel { padding: 18px 16px; border-radius: 16px; }
    .pd-guarantee-bar { padding: 36px 0; }
    .pd-guarantee-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pd-guarantee-item p { max-width: none; }
    .pd-highlights-section { padding: 36px 0 28px; }
    .pd-process-section { padding: 36px 0; }
    .pd-process-steps { flex-direction: column; align-items: center; gap: 24px; }
    .pd-step { max-width: 100%; padding: 0; }
    .pd-step-number { font-size: 2rem; }
    .pd-reviews-section { padding: 36px 0 28px; }
    .pd-reviews-grid { gap: 12px; overflow-x: auto; -webkit-scroll-snap-type: x mandatory; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 4px 16px 4px 4px; }
    .pd-review-card { padding: 0 16px 16px; width: 82vw; min-height: 260px; -webkit-scroll-snap-align: start; scroll-snap-align: start; }
    .pd-review-photo { width: calc(100% + 32px); margin: 0 -16px; }
    .pd-reviews-wrapper { padding: 0; overflow: visible; }
    .pd-reviews-nav { display: none; }
    .pd-sizeguide-section { padding: 32px 0 24px; }
    .pd-sizeguide-table { border-radius: 10px; -webkit-overflow-scrolling: touch; overflow-x: auto; }
    .pd-sizeguide-table table { min-width: 600px; }
    .pd-sizeguide-table thead th { font-size: 0.82rem; padding: 12px 12px; }
    .pd-sizeguide-table tbody td { font-size: 0.85rem; padding: 10px 12px; }
    .pd-sizeguide-table thead th:first-child, .pd-sizeguide-table tbody td:first-child { padding-left: 14px; }
    .pd-faq-section { padding: 36px 0 28px; }
    .pd-faq-list { border-radius: 14px; }
    .pd-faq-q { font-size: 0.88rem; padding: 14px 18px; }
    .pd-faq-item.open .pd-faq-a { padding: 0 18px 16px 52px; }
    .pd-final-cta { padding: 36px 0; }
    .pd-final-actions { flex-direction: column; align-items: center; }
    .pd-final-actions .btn { width: 100%; max-width: 320px; text-align: center; }
    .pd-related-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .pd-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .pd-thumb { width: 52px; height: 52px; }
    .pd-thumb-strip { gap: 8px; }
    .pd-spec-row { gap: 10px; }
    .pd-guarantee-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pd-guarantee-icon { width: 48px; height: 48px; border-radius: 12px; }
    .pd-guarantee-item h3 { font-size: 0.85rem; }
    .pd-guarantee-item p { font-size: 0.75rem; }
    .pd-showcase { padding: 8px 0 24px; }
    .pd-highlights-section { padding: 28px 0 24px; }
    .pd-process-section { padding: 28px 0; }
    .pd-reviews-section { padding: 28px 0 24px; }
    .pd-faq-section { padding: 28px 0 24px; }
    .pd-sizeguide-section { padding: 28px 0 20px; }
    .pd-sizeguide-table thead th { font-size: 0.78rem; padding: 8px 6px; }
    .pd-sizeguide-table tbody td { font-size: 0.85rem; padding: 8px 6px; }
    .pd-sizeguide-table thead th:first-child, .pd-sizeguide-table tbody td:first-child { padding-left: 10px; }
    .pd-sizeguide-recommend { font-size: 0.58rem; padding: 1px 6px; }
    .pd-final-cta { padding: 32px 0; }
    .pd-section-title { font-size: 1.25rem; }
    .pd-final-cta-inner h2 { font-size: 1.15rem; }
}
/* Services Page — Premium CTA */
.sp-cta-section { position: relative; text-align: center; background: linear-gradient(160deg, #FBF6ED 0%, #F5EFE3 60%, #EDE5D5 100%); padding: 56px 0; overflow: hidden; }
.sp-cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 5%, #B8860B 30%, #DAA520 50%, #B8860B 70%, transparent 95%); }
.sp-cta-section::after { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%); pointer-events: none; }
.sp-cta-section .container { position: relative; z-index: 1; }
.sp-cta-section h2 { font-size: 2rem; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--color-heading); letter-spacing: 0.03em; margin-bottom: 14px; }
.sp-cta-section h2::after { content: ''; display: block; width: 48px; height: 2px; background: linear-gradient(90deg, transparent, #B8860B, transparent); margin: 16px auto 0; border-radius: 1px; }
.sp-cta-section p { font-size: 1.02rem; color: var(--color-text-light); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.sp-cta-section .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.sp-cta-section .btn { background: var(--color-btn); color: white; border-color: var(--color-btn); box-shadow: 0 4px 16px rgba(28,25,23,0.12); }
.sp-cta-section .btn:hover { background: var(--color-btn-hover); border-color: var(--color-btn-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,25,23,0.18); }
.sp-cta-section .btn-outline { background: transparent; color: var(--color-btn); border: 2px solid var(--color-btn); box-shadow: none; }
.sp-cta-section .btn-outline:hover { background: var(--color-btn); color: white; }
@media (max-width: 768px) { .sp-cta-section { padding: 40px 0; } }
    /* Contact Form Inline Layout */
#contactForm .cf-inline { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
#orderForm .cf-inline { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
#contactForm .cf-inline .form-label { flex: 0 0 80px; min-width: 80px; margin-bottom: 0; padding-top: 10px; text-align: right; }
#orderForm .cf-inline .form-label { flex: 0 0 80px; min-width: 80px; margin-bottom: 0; padding-top: 12px; text-align: right; }
#contactForm .cf-inline .cf-input-wrap,
#orderForm .cf-inline .cf-input-wrap { flex: 1; min-width: 0; }
#contactForm .cf-inline .form-control,
#orderForm .cf-inline .form-control { width: 100%; }
#contactForm .cf-inline .form-error,
#orderForm .cf-inline .form-error { display: none; font-size: 0.78rem; color: #d32f2f; margin-top: 4px; line-height: 1.4; }
#contactForm .cf-inline.has-error .form-error,
#orderForm .cf-inline.has-error .form-error { display: block; }
#contactForm .cf-inline .form-hint,
#orderForm .cf-inline .form-hint { margin-top: 4px; font-size: 0.8rem; color: var(--color-text-muted); }
@media (max-width: 600px) {
    #contactForm .cf-inline,
    #orderForm .cf-inline { flex-direction: column; gap: 4px; }
    #contactForm .cf-inline .form-label,
    #orderForm .cf-inline .form-label { text-align: left; flex: none; padding-top: 0; }
    #orderForm .form-compact-row { flex-direction: column; }
    #orderForm .form-compact-row .cf-inline { min-width: 100%; }
    /* Product detail inline form — stack vertically on small screens */
    .pd-inline-form .form-group { flex-direction: column; align-items: stretch; gap: 4px; }
    .pd-inline-form label { text-align: left; min-width: 0; white-space: normal; }
    .pd-inline-form .form-group--block { gap: 4px; }
}
/* Order Form compact row — two cf-inline side by side */
#orderForm .form-compact-row { display: flex; gap: 12px; margin-bottom: 0; }
#orderForm .form-compact-row > .cf-inline { flex: 1; min-width: 0; margin-bottom: 16px; }
#orderForm .form-compact-row > .cf-inline .form-label { flex: 0 0 70px; min-width: 70px; font-size: 0.88rem; }
#orderForm .form-group { margin-bottom: 20px; }
#orderForm .form-control { padding: 12px 16px; }
#orderForm .form-label { margin-bottom: 8px; font-size: 0.9rem; }
#orderForm textarea.form-control { min-height: 100px; }
#orderForm .order-sidebar-h3 { margin-bottom: 16px; }
.order-layout > .form-card { display: flex; flex-direction: column; }
.order-layout > .form-card > #orderForm { flex: 1; display: flex; flex-direction: column; }
#orderForm .form-group-upload { flex: 1; display: flex; flex-direction: column; }
#orderForm .upload-zone { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 20px; }
/* Contact Form Validation */
.form-error { display: none; font-size: 0.78rem; color: #d32f2f; margin-top: 4px; line-height: 1.4; }
.form-control.is-invalid { border-color: #d32f2f !important; box-shadow: 0 0 0 3px rgba(211,47,47,0.08) !important; }
.form-group.has-error .form-error { display: block; }
.form-submit-msg { display: none; text-align: center; margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-md, 8px); font-size: 0.92rem; }
.form-submit-msg.success { display: block; background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.form-submit-msg.error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.cf-char-count { display: none; font-size: 0.78rem; color: var(--color-text-muted); text-align: right; margin-top: 4px; }
.cf-char-count.warn { display: block; color: #d32f2f; font-weight: 600; }
/* Product detail — size radio group (JS fallback for :has()) */
.pd-size-radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-size-radio-group label { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid var(--color-border-light); border-radius: 10px; cursor: pointer; font-size: 0.82rem; color: var(--color-text); transition: all 0.2s ease; background: var(--color-bg); }
.pd-size-radio-group label:hover { border-color: var(--color-accent); background: rgba(184,134,11,0.03); }
.pd-size-radio-group input[type="radio"] { accent-color: var(--color-accent); }
.pd-size-radio-group input[type="radio"]:checked + span { color: var(--color-accent); font-weight: 600; }
.pd-size-radio-group label.selected { border-color: var(--color-accent); background: rgba(184,134,11,0.06); box-shadow: 0 2px 8px rgba(184,134,11,0.12); }
noscript nav { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
