@font-face { font-family: 'Geist-fallback'; src: local('Arial'); }
:root { --ease: cubic-bezier(0.22, 1, 0.36, 1); --orange: #d29c24; --black: #0a0a0a; --white: #faf7f2; }
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #fff; color: #171512; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
a:link, a:visited { color: inherit; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3 { font-family: 'Anton', sans-serif; margin: 0; }

@keyframes kenburns { 0% { transform: scale(1.05); } 100% { transform: scale(1.18); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bolt-pulse { 0%, 100% { transform: scale(0.9); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }
@keyframes wrench-turn { 0% { transform: rotate(-18deg); } 25% { transform: rotate(18deg); } 50% { transform: rotate(-18deg); } 75% { transform: rotate(18deg); } 100% { transform: rotate(-18deg); } }
.page-loader { position: fixed; inset: 0; background: #0e0d0c; z-index: 3000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease); }
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-icon { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; }
.loader-icon .bolt-glow { position: absolute; width: 34px; height: 34px; border-radius: 50%; background: radial-gradient(circle, rgba(210,156,36,0.35), transparent 70%); animation: bolt-pulse 1.6s ease-in-out infinite; }
.loader-icon .wrench { position: absolute; animation: wrench-turn 1.6s cubic-bezier(0.65,0,0.35,1) infinite; }
.loader-label { color: #c9c0b0; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

/* Header */
header.site-header { position: sticky; top: 0; z-index: 900; background: #000; display: flex; align-items: center; justify-content: space-between; padding: 16px 4vw; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
header.site-header .logo img { height: clamp(72px,9vw,117px); width: auto; object-fit: contain; }
header.site-header nav.desktop-nav { display: flex; align-items: center; gap: 20px; flex: 1; justify-content: center; }
header.site-header nav.desktop-nav > a, header.site-header nav.desktop-nav .services-trigger > a { color: #f2ede6; font-size: 14px; font-weight: 500; padding-bottom: 4px; border-bottom: 2px solid transparent; white-space: nowrap; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
header.site-header nav.desktop-nav > a.active, header.site-header nav.desktop-nav .services-trigger.active > a { color: var(--orange); border-bottom-color: var(--orange); }
.services-trigger { position: relative; }
.services-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px; width: 240px; display: none; }
.services-trigger:hover .services-dropdown, .services-trigger.open .services-dropdown { display: block; }
.services-dropdown-inner { background: #151310; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: flex; flex-direction: column; gap: 2px; }
.services-dropdown-inner a { color: #f2ede6; font-size: 14px; padding: 10px 12px; border-radius: 8px; display: block; }
.services-dropdown-inner a:hover { background: rgba(255,255,255,0.06); color: #f2ede6; }
.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; position: relative; }
.icon-btn { width: 40px; height: 40px; border-radius: 8px; background: transparent; border: none; color: #f7f4f0; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.search-overlay { position: fixed; top: 0; left: 0; right: 0; z-index: 920; background: #12100e; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 26px 5vw; display: none; }
.search-overlay.open { display: block; }
.search-overlay .row { display: flex; gap: 12px; align-items: center; max-width: 800px; margin: 0 auto; }
.search-overlay input { flex: 1; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.2); color: #f7f4f0; font-size: 20px; padding: 8px 0; outline: none; }
.search-overlay .close-search { width: 44px; height: 44px; background: transparent; border: none; color: #f7f4f0; cursor: pointer; flex-shrink: 0; }
.settings-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(90vw,380px); background: #151310; z-index: 960; padding: 26px 22px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s var(--ease); }
.settings-panel.open { transform: translateX(0); }
.settings-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.settings-panel-head div { color: #f2ede6; font-size: 18px; font-weight: 700; }
.settings-panel label { display: flex; justify-content: space-between; align-items: center; color: #dcd6cd; font-size: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.settings-panel select { width: 100%; margin-top: 8px; padding: 10px; border-radius: 8px; background: #211e19; color: #f2ede6; border: 1px solid rgba(255,255,255,0.15); }
.header-cta { background: var(--orange); color: #12100e; border: none; padding: 11px 16px; border-radius: 9px; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap; display: inline-flex; align-items: center; flex-shrink: 0; transition: all 0.25s var(--ease); }
.header-cta:hover, .cta-btn:hover { filter: brightness(1.08); transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 24px rgba(210,156,36,0.45), inset 0 1px 0 rgba(255,255,255,0.5); }
.contact-dd-wrap { position: relative; }
.contact-dd { position: absolute; top: 48px; right: 0; background: #1a1815; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px; width: 200px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: none; flex-direction: column; gap: 2px; z-index: 950; }
.contact-dd.open { display: flex; }
.contact-dd a { color: #f2ede6; font-size: 14px; padding: 10px 12px; border-radius: 8px; display: flex; gap: 10px; align-items: center; }
.contact-dd a:hover { background: rgba(255,255,255,0.06); color: #f2ede6; }
.hamburger { display: none; width: 44px; height: 44px; background: transparent; border: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; border-radius: 8px; }
.hamburger span { width: 22px; height: 2px; background: #f7f4f0; display: block; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw,400px); background: #151310; z-index: 950; overflow-y: auto; padding: 24px 20px 40px; transform: translateX(100%); transition: transform 0.3s var(--ease); }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .close-btn { width: 44px; height: 44px; background: transparent; border: none; color: #f2ede6; cursor: pointer; display: block; margin-left: auto; margin-bottom: 10px; }
.mobile-drawer .drawer-nav { max-width: 440px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer .drawer-nav a.top-link { color: #f2ede6; font-size: 19px; font-weight: 600; padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; }
.mobile-services-toggle { color: #f2ede6; font-size: 19px; font-weight: 600; padding: 13px 6px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-services-toggle svg { transition: transform 0.25s var(--ease); }
.mobile-services-toggle.open svg { transform: rotate(180deg); }
.mobile-services-list { display: none; flex-direction: column; gap: 2px; padding: 2px 6px 14px; }
.mobile-services-list.open { display: flex; }
.mobile-services-list a { color: #c9c0b0; font-size: 16px; padding: 9px 10px; border-radius: 8px; }
.mobile-drawer-cta { margin-top: 14px; background: var(--orange); color: #12100e; border: none; padding: 15px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; display: block; text-align: center; box-sizing: border-box; }
.mobile-drawer-contact { display: flex; flex-direction: column; gap: 2px; margin-top: 18px; }
.mobile-drawer-contact a { color: #dcd6cd; font-size: 15px; padding: 11px 6px; display: flex; gap: 10px; align-items: center; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 940; display: none; }
.scrim.open { display: block; }

@media (max-width: 768px) {
  nav.desktop-nav, .header-right { display: none !important; }
  .hamburger { display: flex; }
}
html { overflow-x: hidden; }
@media (max-width: 768px) {
  .why-row { flex-direction: column; overflow-x: visible; gap: 0; }
  .why-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px 0 !important; min-width: 0; }
  .why-block.light .why-item { border-bottom-color: #e2e2e2; }
  .why-item:last-child { border-bottom: none; }
  .testi-card.prev, .testi-card.next { display: none; }
  .testi-card { width: 100%; padding: 28px 22px; }
}

/* Hero */
.hero { position: relative; height: 82vh; min-height: 320px; overflow: hidden; display: flex; align-items: center; }
.hero .hero-bg { position: absolute; inset: 0; }
.hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
.hero .hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0.55), rgba(10,9,8,0.72)); }
.hero-content { position: relative; padding: 0 6vw; max-width: 900px; z-index: 1; }
.hero-eyebrow { color: var(--orange); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.hero h1 { color: var(--white); font-size: clamp(34px,6vw,64px); font-weight: 400; line-height: 1.05; letter-spacing: 0.01em; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { color: #e6ded2; font-size: clamp(16px,1.8vw,20px); line-height: 1.55; max-width: 620px; margin-bottom: 30px; }
.cta-btn { background: var(--orange); color: #12100e; border: none; padding: 16px 30px; border-radius: 10px; font-size: 17px; font-weight: 700; cursor: pointer; display: inline-block; transition: all 0.25s var(--ease); }
.hero-note { color: #c9c0b0; font-size: 13px; margin-top: 12px; }
@media (max-width: 768px) { .hero { height: 68vh; } }
.hero.short { height: 48vh; }
@media (max-width: 768px) { .hero.short { height: 46vh; } }

/* Layout helpers */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 6vw; }
.section { padding: 60px 0; }
.eyebrow { color: var(--orange); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }

/* About */
.about-block { background: #0a0a0a; }
.about-grid { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 60px; align-items: center; padding: 100px 0 60px; }
.about-grid img { border-radius: 18px; width: 100%; height: 420px; object-fit: cover; }
.about-grid h2 { font-size: clamp(26px,3.2vw,38px); color: var(--white); line-height: 1.15; margin-bottom: 22px; }
.about-grid p { color: #d8d3ca; font-size: 18px; line-height: 1.75; margin: 0; }
.about-grid .more-link { display: inline-block; margin-top: 20px; color: var(--orange); font-size: 15px; font-weight: 700; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; padding: 50px 0; } }

.why-block { background: #0a0a0a; padding: 40px 0 60px; }
.why-block.light { background: #fff; }
.why-block h2 { color: var(--white); font-size: clamp(26px,3.2vw,36px); margin-bottom: 40px; }
.why-block.light h2 { color: var(--black); }
.why-row { display: flex; flex-wrap: nowrap; gap: 0; overflow-x: auto; padding: 8px 0 4px; }
.why-item { flex: 1; min-width: 210px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.15); transition: transform 0.3s var(--ease); }
.why-block.light .why-item { border-right-color: #e2e2e2; }
.why-item:first-child { padding-left: 0; }
.why-item:last-child { border-right: none; }
.why-item:hover { transform: translateY(-4px); }
.why-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--black); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-block.light .why-icon { background: var(--black); color: var(--orange); }
.why-item h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; font-family: 'Geist', sans-serif; }
.why-block.light .why-item h3 { color: var(--black); }
.why-item p { font-size: 15px; color: #c9c0b0; line-height: 1.5; margin: 0; }
.why-block.light .why-item p { color: #2b2b2b; }

/* What We Do grid */
.services-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.services-head h2 { font-size: clamp(26px,3.2vw,36px); color: var(--black); }
.services-head a { color: var(--orange); font-size: 15px; font-weight: 700; white-space: nowrap; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 26px; }
.service-card { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.08); border: 1.5px solid rgba(0,0,0,0.06); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(0,0,0,0.28); border-color: var(--orange); }
.service-card .img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card:hover .img-wrap img { transform: scale(1.08); }
.service-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .body .title { font-size: 19px; font-weight: 800; color: var(--black); }
.service-card .body .desc { font-size: 15px; color: #5a5346; line-height: 1.6; flex: 1; }
.service-card .body .learn { font-size: 14px; color: var(--orange); font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* Before & After */
.ba-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.ba-head h2 { font-size: clamp(26px,3.2vw,36px); color: var(--black); }
.ba-head a { color: var(--orange); font-size: 15px; font-weight: 700; white-space: nowrap; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 24px; }
.ba-card { position: relative; height: 320px; border-radius: 14px; overflow: hidden; cursor: ew-resize; user-select: none; }
.ba-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-card .before-img { clip-path: inset(0 50% 0 0); }
.ba-tag { position: absolute; top: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; pointer-events: none; }
.ba-tag.before { left: 14px; background: rgba(23,21,18,0.72); color: var(--white); }
.ba-tag.after { right: 14px; background: rgba(210,156,36,0.9); color: #12100e; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.2); }
.ba-handle { position: absolute; top: 50%; left: 50%; width: 38px; height: 38px; border-radius: 50%; background: var(--white); transform: translate(-50%,-50%); display: flex; align-items: center; justify-content: center; pointer-events: none; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ba-label { margin-top: 12px; color: var(--black); font-size: 15px; font-weight: 600; }

/* Testimonials */
.testi-section { background: #12100e; padding: 90px 0 110px; }
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
.testi-head h2 { color: var(--white); font-size: clamp(26px,3.2vw,36px); }
.testi-nav { display: flex; align-items: center; gap: 14px; }
.testi-nav span { color: #9a938a; font-size: 14px; letter-spacing: 0.05em; }
.testi-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #f2ede6; cursor: pointer; }
.testi-track { position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.testi-card { position: absolute; top: 50%; left: 50%; display: none; max-width: 640px; width: 90%; margin: 0; background: linear-gradient(160deg,#232019,#1a1712); border: 1px solid rgba(210,156,36,0.25); border-radius: 20px; padding: 34px 38px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); }
.testi-card.active { display: block; transform: translate(-50%,-50%); opacity: 1; z-index: 2; }
.testi-card.prev, .testi-card.next { display: block; opacity: 0.35; z-index: 1; pointer-events: none; filter: blur(0.5px); }
.testi-card.prev { transform: translate(-50%,-50%) translateX(-78%) scale(0.82); }
.testi-card.next { transform: translate(-50%,-50%) translateX(78%) scale(0.82); }
.testi-card .quote-mark { position: absolute; top: 18px; right: 26px; font-family: 'Geist', sans-serif; font-weight: 800; font-size: 64px; color: rgba(210,156,36,0.18); line-height: 1; }
.testi-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-family: 'Geist', sans-serif; font-weight: 500; color: #f2ede6; font-size: clamp(15px,1.6vw,19px); line-height: 1.55; margin: 0 0 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--orange); background: #171512; color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-person .name { color: var(--white); font-size: 14px; font-weight: 700; }
.testi-person .role { color: #9a938a; font-size: 12.5px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.testi-dots button { height: 8px; width: 8px; border-radius: 5px; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: all 0.4s var(--ease); }
.testi-dots button.active { width: 26px; background: var(--orange); }

/* CTA strip */
.cta-strip { position: relative; height: 340px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cta-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-strip .scrim { position: absolute; inset: 0; background: rgba(10,9,8,0.68); display: block; z-index: 0; }
.cta-strip-content { position: relative; text-align: center; color: var(--white); padding: 0 6vw; max-width: 640px; z-index: 1; }
.cta-strip-content h2 { font-size: clamp(24px,3.2vw,34px); margin-bottom: 14px; line-height: 1.2; }
.cta-strip-content p { font-size: 16px; color: #e6ded2; margin: 0 0 26px; }
.cta-strip.orange { background: var(--orange); }
.cta-strip.orange .cta-strip-content { color: #12100e; }
.cta-strip.orange .cta-strip-content p { color: #2b1f0f; }
.cta-strip.orange .cta-btn { background: #0a0a0a; color: var(--white); }

/* Service area chips */
.service-area-block { background: #0a0a0a; padding: 70px 0; }
.service-area-block h2 { color: var(--white); margin-bottom: 16px; }
.service-area-block p { color: #c9c0b0; font-size: 16px; line-height: 1.6; margin: 0 0 32px; max-width: 600px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; }
.area-chip { display: flex; align-items: center; gap: 10px; background: #171512; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 18px; transition: transform 0.25s var(--ease), background 0.25s var(--ease); }
.area-chip:hover { transform: translateY(-3px); background: #211e19; }
.area-chip span { font-size: 15px; font-weight: 600; color: var(--white); }

/* Services page detail sections */
.svc-detail { padding: 60px 0; }
.svc-detail-grid { max-width: 1360px; margin: 0 auto; padding: 0 6vw; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 50px; align-items: center; }
.svc-detail-grid img { border-radius: 18px; width: 100%; height: 380px; object-fit: cover; }
.svc-detail-grid h3 { font-size: clamp(22px,2.6vw,30px); margin-bottom: 16px; }
.svc-detail-grid p.desc { font-size: 17px; line-height: 1.7; margin: 0 0 22px; }
.svc-benefits { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 10px; }
.svc-benefits li { display: flex; gap: 10px; font-size: 15.5px; line-height: 1.5; }
.svc-benefits li:before { content: '✓'; color: var(--orange); flex-shrink: 0; }
.svc-cta-btn { border-radius: 9px; padding: 13px 24px; font-size: 14.5px; font-weight: 600; border: 1.5px solid; cursor: pointer; display: inline-block; transition: transform 0.25s var(--ease), filter 0.25s var(--ease); }
.svc-cta-btn:hover { transform: translateY(-2px) scale(1.04); filter: brightness(1.1); }
.svc-detail.dark { background: #0a0a0a; }
.svc-detail.dark h3, .svc-detail.dark p.desc { color: var(--white); }
.svc-detail.dark .svc-benefits li { color: #d8d3ca; }
.svc-detail.light h3 { color: var(--black); }
.svc-detail.light p.desc { color: #2b2b2b; }
.svc-detail.light .svc-benefits li { color: #3d3830; }
@media (max-width: 900px) { .svc-detail-grid { grid-template-columns: 1fr; } .svc-detail-grid img { order: -1 !important; } .svc-detail-grid > div { order: 0 !important; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: 14px; overflow: hidden; height: 260px; position: relative; cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.18); }
.lightbox { position: fixed; inset: 0; background: rgba(10,9,8,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox .close-btn { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 20px; cursor: pointer; }

/* Contact */
.contact-grid { max-width: 1360px; margin: 0 auto; padding: 100px 6vw 120px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; }
.contact-grid h2 { font-size: clamp(26px,3.2vw,36px); color: var(--black); margin-bottom: 22px; }
.contact-card { background: #f4efe4; border-radius: 16px; padding: 24px 28px; margin-bottom: 20px; }
.contact-info-row { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.contact-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { color: #7a715f; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-value { color: var(--black); font-size: 17px; font-weight: 600; }
.contact-social { display: flex; gap: 10px; margin-top: 6px; }
.contact-map { border-radius: 16px; overflow: hidden; height: 280px; margin-top: 20px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 14px 16px; border-radius: 9px; border: 1.5px solid #d5d5d5; font-size: 16px; width: 100%; background: #fff; color: #171512; display: block; font-family: inherit; }
.contact-form textarea.single-line { resize: none; height: 52px; overflow: hidden; white-space: nowrap; }
.contact-form textarea { resize: vertical; }
.contact-form button { background: var(--orange); color: #12100e; border: none; padding: 16px; border-radius: 9px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.25s var(--ease); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; padding: 60px 6vw 80px; } }

/* Footer */
footer.site-footer { background: #000; color: #c9c0b0; padding: 70px 6vw 40px; }
.footer-grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid img { height: 117px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-grid p { font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.footer-social { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); color: #f7f4f0; display: inline-flex; align-items: center; justify-content: center; }
.footer-heading { color: var(--white); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #c9c0b0; font-size: 14px; width: fit-content; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.footer-links a:hover { color: #c9c0b0; border-bottom-color: var(--orange); }
.footer-bottom { max-width: 1360px; margin: 0 auto; padding-top: 26px; font-size: 12.5px; color: #7a715f; }
