@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:wght@300;400;500&display=swap');

:root {
  --black: #000000;
  --dark: #070707;
  --card: #0f0f0f;
  --border: #1e1e1e;
  --cyan: #d4af5c;
  --cyan-light: #f0d28a;
  --cyan-glow: rgba(212,175,92,0.4);
  --white: #ffffff;
  --grey: #777777;
  --light-grey: #aaaaaa;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; overflow-x: hidden; }
body.loader-active { overflow: hidden; }

/* LOADER — short opening animation: blade pulses, splits, page reveals */
.loader { position: fixed; inset: 0; z-index: 99999; pointer-events: none; }
.loader.gone { display: none; }
.loader-curtain-top, .loader-curtain-bot { position: absolute; left: 0; right: 0; height: 50%; background: var(--black); transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1); }
.loader-curtain-top { top: 0; transform: translateY(0); }
.loader-curtain-bot { bottom: 0; transform: translateY(0); }
.loader.split .loader-curtain-top { transform: translateY(-100%); }
.loader.split .loader-curtain-bot { transform: translateY(100%); }
.loader-blade { position: absolute; top: 50%; left: 50%; width: min(280px, 55vw); aspect-ratio: 1413 / 1413; transform: translate(-50%, -50%); }
.loader-blade-half { position: absolute; inset: 0; background-image: url('../assets/favicon.png'); background-size: contain; background-position: center; background-repeat: no-repeat; transition: transform 0.5s cubic-bezier(0.5, 0, 0.4, 1), opacity 0.4s ease; opacity: 0; filter: drop-shadow(0 0 25px rgba(212,175,92,0.4)); }
.loader-blade-top { clip-path: inset(0 0 50% 0); }
.loader-blade-bot { clip-path: inset(50% 0 0 0); }
.loader.show .loader-blade-half { opacity: 1; animation: loaderPulse 0.45s ease-out 0.15s both; }
.loader.cut .loader-blade-top { transform: translateY(-25%) rotate(-1.5deg); }
.loader.cut .loader-blade-bot { transform: translateY(25%) rotate(1.5deg); }
.loader.fade .loader-blade-half { opacity: 0; }
@keyframes loaderPulse { 0% { filter: drop-shadow(0 0 15px rgba(212,175,92,0.3)); } 50% { filter: drop-shadow(0 0 45px rgba(212,175,92,0.7)); } 100% { filter: drop-shadow(0 0 25px rgba(212,175,92,0.4)); } }
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  body.loader-active { overflow: auto; }
}

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0,0,0,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212,175,92,0.1); padding: 0 2.5rem; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 52px; object-fit: contain; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--light-grey); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--cyan); transform: scaleX(0); transition: transform 0.25s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--cyan) !important; color: var(--black) !important; padding: 0.5rem 1.4rem !important; border-radius: 2px; font-weight: 700 !important; transition: background 0.2s, box-shadow 0.2s !important; }
.nav-cta:hover { background: var(--cyan-light) !important; box-shadow: 0 0 20px rgba(212,175,92,0.4) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(0,0,0,0.97); border-bottom: 1px solid var(--border); z-index: 999; padding: 1.5rem 2rem; flex-direction: column; gap: 1.25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--light-grey); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active-cta { color: var(--cyan); }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 2rem 5rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../assets/work1.jpg'); background-size: cover; background-position: center 25%; filter: brightness(0.45) saturate(0.75); z-index: 0; }
.hero-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 45%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 70%), linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 35%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.hero-scanlines { position: absolute; inset: 0; z-index: 2; background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.06) 3px, rgba(0,0,0,0.06) 4px); pointer-events: none; }
.hero-corner-tl { position: absolute; top: 90px; left: 2.5rem; width: 55px; height: 55px; border-top: 2px solid rgba(212,175,92,0.5); border-left: 2px solid rgba(212,175,92,0.5); z-index: 3; }
.hero-corner-br { position: absolute; bottom: 6rem; right: 2.5rem; width: 55px; height: 55px; border-bottom: 2px solid rgba(212,175,92,0.5); border-right: 2px solid rgba(212,175,92,0.5); z-index: 3; }
.hero > *:not(.hero-bg):not(.hero-bg-overlay):not(.hero-scanlines):not(.hero-corner-tl):not(.hero-corner-br) { position: relative; z-index: 4; }

.hero-logo { width: min(600px, 88vw); margin-bottom: 1.5rem; filter: drop-shadow(0 0 60px rgba(212,175,92,0.35)) drop-shadow(0 0 20px rgba(212,175,92,0.2)); animation: fadeUp 0.9s ease both; }
.hero-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1rem, 2.8vw, 1.5rem); font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.25rem; animation: fadeUp 0.9s 0.12s ease both; }
.hero-sub { font-size: clamp(0.95rem, 1.8vw, 1.08rem); color: rgba(255,255,255,0.55); max-width: 500px; line-height: 1.85; margin-bottom: 2.5rem; animation: fadeUp 0.9s 0.22s ease both; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.9s 0.32s ease both; }
.hero-stats { display: flex; gap: 3rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); animation: fadeUp 0.9s 0.45s ease both; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--cyan); line-height: 1; text-shadow: 0 0 25px rgba(212,175,92,0.6); }
.hero-stat-label { font-size: 0.68rem; color: var(--grey); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.25rem; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--grey); font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; z-index: 5; animation: fadeUp 1s 0.9s ease both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cyan), transparent); animation: scrollPulse 2s infinite; }

/* BUTTONS */
.btn-primary { background: var(--cyan); color: var(--black); padding: 0.9rem 2.2rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { background: var(--cyan-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,92,0.35); }
.btn-outline { background: transparent; color: var(--white); padding: 0.9rem 2.2rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s; backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(212,175,92,0.05); transform: translateY(-3px); }

/* TICKER */
.ticker-wrap { background: var(--cyan); padding: 0.65rem 0; overflow: hidden; white-space: nowrap; }
.ticker { display: inline-block; animation: ticker 22s linear infinite; }
.ticker span { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.2em; color: var(--black); padding: 0 1.5rem; }
.ticker span.sep { opacity: 0.35; }

/* SECTIONS */
section { padding: 6rem 2rem; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1; letter-spacing: 0.02em; margin-bottom: 1rem; }
.section-divider { width: 48px; height: 2px; background: linear-gradient(to right, var(--cyan), transparent); margin-bottom: 3rem; }

/* ABOUT */
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; display: flex; justify-content: center; }
.about-img-circle { width: 340px; height: 340px; border-radius: 50%; object-fit: cover; object-position: center top; border: 3px solid var(--cyan); box-shadow: 0 0 0 10px rgba(212,175,92,0.07), 0 0 80px rgba(212,175,92,0.18); transition: box-shadow 0.4s; }
.about-img-circle:hover { box-shadow: 0 0 0 10px rgba(212,175,92,0.14), 0 0 100px rgba(212,175,92,0.32); }
.about-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,92,0.09) 0%, transparent 70%); pointer-events: none; animation: glowPulse 4s ease-in-out infinite; }
.about-orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; border-radius: 50%; border: 1px dashed rgba(212,175,92,0.14); animation: spin 22s linear infinite; pointer-events: none; }
.about-orbit::before { content: ''; position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.about-text p { color: var(--light-grey); line-height: 1.85; font-size: 0.98rem; margin-bottom: 1.25rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { text-align: left; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--cyan); line-height: 1; text-shadow: 0 0 20px rgba(212,175,92,0.4); }
.stat-label { font-size: 0.75rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }

/* SERVICES */
.services { background: var(--dark); border-top: 1px solid rgba(212,175,92,0.07); border-bottom: 1px solid rgba(212,175,92,0.07); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; top: -250px; left: -150px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,92,0.035) 0%, transparent 70%); pointer-events: none; }
.services-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 1rem; perspective: 1200px; }

/* TILT CARD */
.tilt-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 2.25rem; text-align: left; position: relative; overflow: hidden; transform-style: preserve-3d; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s; will-change: transform; cursor: pointer; }
.tilt-card-shine { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s; border-radius: 6px; mix-blend-mode: overlay; }
.tilt-card:hover .tilt-card-shine { opacity: 1; }
.tilt-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: scaleX(0); transition: transform 0.4s; z-index: 2; }
.tilt-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,92,0.25), 0 0 50px rgba(212,175,92,0.15); border-color: rgba(212,175,92,0.2); }
.tilt-card:hover::before { transform: scaleX(1); }
.service-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 0.95rem; color: var(--light-grey); }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--cyan); }

/* REVIEWS */
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.stars-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.stars { color: #f5c518; font-size: 1.3rem; letter-spacing: 2px; }
.stars-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem; position: relative; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; transform-style: preserve-3d; will-change: transform; }
.review-card::after { content: '"'; position: absolute; top: 1rem; right: 1.25rem; font-size: 3.5rem; line-height: 1; color: rgba(212,175,92,0.07); font-family: Georgia, serif; }
.review-card:hover { transform: translateY(-7px); box-shadow: 0 18px 55px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,92,0.1); border-color: rgba(212,175,92,0.18); }
.review-stars { color: #f5c518; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.9rem; color: var(--light-grey); line-height: 1.75; margin-bottom: 1rem; font-style: italic; }
.review-author { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }

/* INSTAGRAM */
.instagram-section { background: var(--dark); border-top: 1px solid rgba(212,175,92,0.07); border-bottom: 1px solid rgba(212,175,92,0.07); }
.instagram-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

/* INFO */
.info { max-width: 1100px; margin: 0 auto; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-block-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.05em; margin-bottom: 1.25rem; color: var(--white); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.65rem 0; font-size: 0.9rem; }
.hours-table td:first-child { color: var(--light-grey); }
.hours-table td:last-child { text-align: right; color: var(--white); font-weight: 500; }
.hours-table .open td:last-child { color: var(--cyan); font-weight: 700; }
.hours-table .closed td:last-child { color: rgba(255,255,255,0.28); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-icon { color: var(--cyan); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.contact-list a { color: var(--light-grey); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.contact-list a:hover { color: var(--cyan); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-link { color: var(--grey); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.45rem 0.85rem; border: 1px solid var(--border); border-radius: 2px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.social-link:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(212,175,92,0.05); }

/* FOOTER */
footer { background: #000; border-top: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; }
.footer-logo img { height: 36px; margin-bottom: 1rem; opacity: 0.6; }
.footer-text { font-size: 0.78rem; color: var(--grey); line-height: 1.85; }
.footer-text a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
.footer-text a:hover { color: var(--cyan-light); }
.footer-divider { width: 40px; height: 1px; background: var(--border); margin: 1rem auto; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes glowPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.07); opacity: 0.65; } }
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PAGE HERO (sub-pages — matches homepage vibe) */
.page-hero { position: relative; padding: 9rem 2rem 5rem; text-align: center; overflow: hidden; min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; border-bottom: 1px solid rgba(212,175,92,0.06); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,175,92,0.08) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px); pointer-events: none; z-index: 1; }
.page-hero > * { position: relative; z-index: 3; }
.page-hero-corner-tl { position: absolute; top: 95px; left: 2.5rem; width: 50px; height: 50px; border-top: 2px solid rgba(212,175,92,0.5); border-left: 2px solid rgba(212,175,92,0.5); z-index: 2; }
.page-hero-corner-br { position: absolute; bottom: 2rem; right: 2.5rem; width: 50px; height: 50px; border-bottom: 2px solid rgba(212,175,92,0.5); border-right: 2px solid rgba(212,175,92,0.5); z-index: 2; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 7.5vw, 5.5rem); line-height: 1; letter-spacing: 0.02em; white-space: nowrap; text-shadow: 0 0 40px rgba(212,175,92,0.15); }
.page-hero-divider { width: 60px; height: 2px; background: linear-gradient(to right, transparent, var(--cyan), transparent); margin: 1.25rem auto; }
.page-hero-sub { color: var(--light-grey); font-size: clamp(0.95rem, 1.6vw, 1.05rem); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* SPEC GRID (tilt cards on inner pages) */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; perspective: 1200px; }
.spec-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; text-align: left; position: relative; overflow: hidden; transform-style: preserve-3d; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s; will-change: transform; cursor: default; }
.spec-card .tilt-card-shine { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s; border-radius: 6px; mix-blend-mode: overlay; }
.spec-card:hover .tilt-card-shine { opacity: 1; }
.spec-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform: scaleX(0); transition: transform 0.4s; z-index: 2; }
.spec-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,92,0.25), 0 0 50px rgba(212,175,92,0.15); border-color: rgba(212,175,92,0.2); }
.spec-card:hover::before { transform: scaleX(1); }
.spec-card-icon { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--cyan); margin-bottom: 0.75rem; line-height: 1; text-shadow: 0 0 20px rgba(212,175,92,0.4); }
.spec-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; color: var(--white); margin-bottom: 0.85rem; }
.spec-card-text { color: var(--light-grey); font-size: 0.92rem; line-height: 1.7; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item[open] { border-color: rgba(212,175,92,0.25); box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 25px rgba(212,175,92,0.07); }
.faq-item summary { padding: 1.15rem 1.5rem; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em; color: var(--white); list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--cyan); transition: transform 0.3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--cyan); }
.faq-item-body { padding: 0 1.5rem 1.25rem; color: var(--light-grey); font-size: 0.95rem; line-height: 1.75; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 1.1rem; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-logo { width: min(340px, 90vw); }
  .hero-corner-tl, .hero-corner-br { display: none; }
  .hero-stats { gap: 1.75rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .about-stats { justify-content: center; }
  .about-img-circle { width: 260px; height: 260px; }
  .about-glow, .about-orbit { width: 310px; height: 310px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 4rem 1.5rem; }

  .page-hero { padding: 7rem 1.5rem 3.5rem; min-height: 40vh; }
  .page-hero h1 { white-space: normal; font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .page-hero-corner-tl, .page-hero-corner-br { display: none; }
  .spec-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
}
