*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #000000;
  --dark:   #0d0d0d;
  --card:   #111111;
  --card2:  #181818;
  --yellow: #FFD100;
  --yellow-dark: #e8be00;
  --white:  #ffffff;
  --offwhite: #e8e8e8;
  --gray:   #888888;
  --border: #222222;
  --border2: #2a2a2a;
}

[data-theme="light"] {
  --black:  #fafaf8;
  --dark:   #f2f0eb;
  --card:   #ffffff;
  --card2:  #f7f5f0;
  --yellow: #E6AC00;
  --yellow-dark: #c99800;
  --white:  #111111;
  --offwhite: #2d2d2d;
  --gray:   #666666;
  --border: #e2dfd6;
  --border2: #d4d0c8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--black); color: var(--white); line-height: 1.6; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2.5rem;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo img { height: 42px; width: 42px; object-fit: cover; border-radius: 6px; }
.nav-logo-text { font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -.3px; line-height: 1.2; }
.nav-logo-text span { color: var(--yellow); display: block; font-size: .7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--yellow) !important; color: #000 !important; padding: .55rem 1.4rem; border-radius: 6px; font-weight: 700 !important; font-size: .875rem !important; transition: background .2s, transform .15s !important; }
.nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem;
  padding: 9rem 4rem 5rem;
  max-width: 1300px; margin: 0 auto;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,209,0,.1); border: 1px solid rgba(255,209,0,.3);
  color: var(--yellow); font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -2.5px;
  margin-bottom: 1.4rem;
}
.hero h1 .line-yellow { color: var(--yellow); }
.hero h1 .line-outline {
  color: var(--white);
}
.hero-desc { color: var(--gray); font-size: 1.05rem; max-width: 480px; margin-bottom: 2.25rem; line-height: 1.7; }
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.75rem; border-radius: 8px; font-size: .95rem; font-weight: 700; text-decoration: none; transition: transform .15s, background .2s; cursor: pointer; border: none; font-family: inherit; }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: #555; transform: translateY(-2px); }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { }
.trust-num { font-size: 1.75rem; font-weight: 900; color: var(--white); line-height: 1; }
.trust-num span { color: var(--yellow); }
.trust-label { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; margin-top: .15rem; }
.trust-divider { width: 1px; background: var(--border2); align-self: stretch; }

/* hero right — logo display */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  width: 420px; height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: 0 0 80px rgba(255,209,0,.15), 0 40px 80px rgba(0,0,0,.6);
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-logo-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,209,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pill {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: #000;
  padding: .6rem 1.5rem; border-radius: 999px;
  font-size: .8rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  white-space: nowrap; box-shadow: 0 4px 20px rgba(255,209,0,.4);
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--yellow); overflow: hidden;
  padding: .85rem 0; border-top: 1px solid var(--yellow-dark); border-bottom: 1px solid var(--yellow-dark);
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 800; color: #000;
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.marquee-dot { width: 6px; height: 6px; background: #000; border-radius: 50%; opacity: .4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── RECENT WORK / VIDEO SPOTLIGHT ─── */
.recent-work-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; align-items: stretch; }
.rw-video-wrap { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #000; }
.rw-video-wrap video { width: 100%; height: 100%; max-height: 560px; object-fit: cover; display: block; }
.rw-video-badge { position: absolute; top: 1rem; left: 1rem; background: var(--yellow); color: #000; font-size: .7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; }
.rw-side { display: flex; flex-direction: column; gap: 1.25rem; }
.rw-ba-label { display:flex; justify-content:space-between; margin-top:.5rem; }
.rw-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rw-photo-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.rw-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.rw-photo-card:hover img { transform: scale(1.05); }
@media (max-width: 900px) {
  .recent-work-grid { grid-template-columns: 1fr; }
  .rw-video-wrap video { max-height: 420px; }
}

/* ─── SECTION BASE ─── */
section { padding: 5.5rem 2rem; scroll-margin-top: 70px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { display: inline-block; color: var(--yellow); font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: .6rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: .8rem; }
.section-sub { color: var(--gray); max-width: 520px; margin-bottom: 3rem; font-size: .97rem; }
.alt-bg { background: var(--dark); }

/* ─── SERVICES ─── */
.services-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab-btn {
  background: transparent; border: 1px solid var(--border2); color: var(--gray);
  padding: .5rem 1.1rem; border-radius: 6px; font-size: .83rem; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.tab-btn.active, .tab-btn:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .6rem; }
.service-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 7px;
  padding: .85rem 1rem; font-size: .875rem; color: var(--offwhite);
  display: flex; align-items: center; gap: .6rem; transition: border-color .2s, background .2s;
}
.service-item:hover { border-color: var(--yellow); background: var(--card2); }
.service-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }

/* ─── HOW IT WORKS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; counter-reset: step; }
.step { counter-increment: step; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; transition: border-color .2s, transform .2s; }
.step:hover { border-color: var(--yellow); transform: translateY(-3px); }
.step-num {
  width: 38px; height: 38px;
  background: var(--yellow); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #000; margin-bottom: 1rem;
}
.step-num::before { content: counter(step); }
.step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.step p { color: var(--gray); font-size: .85rem; line-height: 1.6; }

/* ─── ABOUT ─── */
.about-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: var(--gray); margin-bottom: 1rem; font-size: .95rem; line-height: 1.75; }
.about-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.badge { background: #111; border: 1px solid var(--border2); color: var(--offwhite); padding: .38rem .9rem; border-radius: 6px; font-size: .78rem; font-weight: 600; }
.badge-yellow { background: rgba(255,209,0,.1); border-color: rgba(255,209,0,.35); color: var(--yellow); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.about-stat { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; text-align: center; }
.about-stat-num { font-size: 2.25rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.about-stat-label { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; margin-top: .3rem; }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; }
.review-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem;
  transition: border-color .2s;
}
.review-card:hover { border-color: #333; }
.review-stars { color: var(--yellow); font-size: .95rem; letter-spacing: 2px; }
.review-text { color: var(--offwhite); font-size: .9rem; line-height: 1.65; flex: 1; }
.review-name { font-weight: 700; font-size: .88rem; }
.review-location { font-size: .75rem; color: var(--gray); }
.reviews-cta { text-align: center; margin-top: 2.5rem; }
.reviews-cta a { color: var(--yellow); text-decoration: none; font-weight: 700; font-size: .88rem; border-bottom: 1px solid rgba(255,209,0,.3); padding-bottom: 2px; }
.reviews-cta a:hover { border-color: var(--yellow); }

/* ─── AREA ─── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .65rem; margin-top: 2rem; }
.area-pill { background: var(--card); border: 1px solid var(--border); border-radius: 7px; padding: .8rem 1rem; display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .875rem; text-decoration: none; color: var(--white); transition: border-color .2s; }
.area-pill:hover { border-color: var(--yellow); }
.area-dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 780px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white); font-family: inherit;
  font-size: .95rem; font-weight: 700; text-align: left; padding: 1.25rem 1.5rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--yellow); }
.faq-q .faq-icon { color: var(--yellow); font-size: 1.2rem; flex-shrink: 0; transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; color: var(--gray); font-size: .9rem; line-height: 1.75; }
.faq-a.open { display: block; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--yellow);
  padding: 4rem 2rem; text-align: center;
}
.cta-banner h2 { color: #000; letter-spacing: -1.5px; margin-bottom: .75rem; }
.cta-banner p { color: rgba(0,0,0,.65); font-size: 1rem; margin-bottom: 2rem; }
.btn-black { background: #000; color: var(--yellow); }
.btn-black:hover { background: #111; transform: translateY(-2px); }
.btn-black-outline { background: transparent; color: #000; border: 2px solid #000; }
.btn-black-outline:hover { background: rgba(0,0,0,.06); transform: translateY(-2px); }

/* ─── PHOTOS ─── */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.photo-card {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--card); border: 1px solid var(--border);
  cursor: pointer;
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  opacity: 0; transition: opacity .25s;
}
.photo-card:hover .photo-overlay { opacity: 1; }
/* lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.93); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; box-shadow: 0 0 60px rgba(0,0,0,.8); }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1; opacity: .7; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.5rem; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,209,0,.2); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ─── CONTACT ─── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; }
.contact-info h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: .65rem; letter-spacing: -.5px; }
.contact-info > p { color: var(--gray); margin-bottom: 2rem; font-size: .93rem; }
.cdetail { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; text-decoration: none; color: var(--white); }
.cdetail:hover .cdetail-val { color: var(--yellow); }
.cdetail-icon { width: 40px; height: 40px; background: #111; border: 1px solid var(--border2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cdetail-lbl { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.cdetail-val { font-size: .95rem; font-weight: 600; transition: color .2s; }
.social-row { display: flex; gap: .6rem; margin-top: 1.75rem; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: .5rem; background: #111; border: 1px solid var(--border2); color: var(--white); text-decoration: none; padding: .55rem 1rem; border-radius: 7px; font-size: .82rem; font-weight: 600; transition: border-color .2s, color .2s; }
.social-btn:hover { border-color: var(--yellow); color: var(--yellow); }

/* FORM */
form { display: flex; flex-direction: column; gap: .9rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
label { font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: .28rem; }
input, textarea, select {
  width: 100%; background: #0d0d0d; border: 1px solid var(--border2); border-radius: 7px;
  color: var(--white); padding: .75rem 1rem; font-size: .93rem; font-family: inherit;
  transition: border-color .2s; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--yellow); }
input::placeholder, textarea::placeholder { color: #444; }
select option { background: #111; }
textarea { resize: vertical; min-height: 100px; }
.success-msg { display: none; background: rgba(255,209,0,.08); border: 1px solid rgba(255,209,0,.3); color: var(--yellow); padding: 1rem; border-radius: 8px; text-align: center; font-weight: 700; margin-top: .25rem; }

/* ─── OVERLAY PAGES (Privacy / Terms) ─── */
.hidden-overlay { display: none; }
.hidden-overlay.active { display: block; }

/* ─── BEFORE/AFTER SLIDER ─── */
.ba-section { margin-bottom: 3.5rem; }
.ba-pairs { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2rem; }
.ba-slider {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); cursor: col-resize;
  user-select: none; -webkit-user-select: none;
}
.ba-slider img { display: block; width: 100%; height: 320px; object-fit: cover; pointer-events: none; }
.ba-after {
  position: absolute; inset: 0; overflow: hidden;
  width: 50%;
}
.ba-after img { width: auto; min-width: 100%; max-width: none; position: absolute; top: 0; left: 0; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 3px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.ba-handle-btn {
  width: 38px; height: 38px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #000; font-weight: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.5); flex-shrink: 0;
  pointer-events: none;
}
.ba-labels { display: flex; justify-content: space-between; margin-top: .6rem; }
.ba-label { font-size: .75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.photos-toggle { display: flex; gap: .5rem; margin-bottom: 2rem; }
.toggle-btn {
  background: transparent; border: 1px solid var(--border2); color: var(--gray);
  padding: .5rem 1.25rem; border-radius: 6px; font-size: .85rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.toggle-btn.active, .toggle-btn:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.photos-view { display: none; }
.photos-view.active { display: block; }

/* ─── NEIGHBORHOOD FAVE AWARD ─── */
.fave-section { background: var(--black); text-align: center; padding: 5.5rem 2rem; }
.fave-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -2px; color: var(--yellow); text-transform: uppercase; line-height: 1; margin-bottom: 1.25rem; }
.fave-sub { color: var(--gray); font-size: 1.1rem; max-width: 560px; margin: 0 auto 3.5rem; line-height: 1.6; }
.fave-badges { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.fave-badge { width: 190px; height: 190px; border-radius: 50%; border: 2px solid var(--yellow); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem; }
.fave-badge-label { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.fave-badge-year { font-size: 2.1rem; font-weight: 900; color: var(--white); letter-spacing: -.5px; }
@media (max-width: 640px) {
  .fave-badge { width: 140px; height: 140px; }
  .fave-badge-year { font-size: 1.6rem; }
}

/* ─── FOOTER ─── */
footer { background: #000; border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.footer-logo img { height: 36px; width: 36px; object-fit: cover; border-radius: 5px; }
.footer-logo-text { font-size: .95rem; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--yellow); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { color: var(--gray); font-size: .78rem; }

/* ─── LIGHT MODE OVERRIDES ─── */
[data-theme="light"] nav { background: rgba(250,250,248,0.96) !important; box-shadow: 0 1px 12px rgba(0,0,0,.08); }
[data-theme="light"] .mobile-menu { background: rgba(250,250,248,.99); }
[data-theme="light"] .mobile-menu a { border-bottom-color: var(--border); }
[data-theme="light"] div[style*="background:#000"] { background: var(--black) !important; }
[data-theme="light"] input, [data-theme="light"] textarea, [data-theme="light"] select { background: #fff; }
[data-theme="light"] select option { background: #fff; }
[data-theme="light"] input::placeholder, [data-theme="light"] textarea::placeholder { color: #aaa; }
[data-theme="light"] .cdetail-icon { background: var(--dark); }
[data-theme="light"] .social-btn { background: var(--dark); }
[data-theme="light"] .badge { background: var(--dark); }
[data-theme="light"] footer { background: var(--dark); }
[data-theme="light"] .btn-black { background: #111; }
[data-theme="light"] .btn-black-outline { color: #111; border-color: #111; }
[data-theme="light"] .float-text-pulse { background: #111; }
[data-theme="light"] .faq-q { color: var(--white); }

/* theme toggle button */
.theme-toggle {
  background: none; border: 1px solid var(--border2); border-radius: 20px;
  color: var(--gray); cursor: pointer; font-size: .8rem; font-family: inherit;
  padding: .35rem .85rem; display: flex; align-items: center; gap: .4rem;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.theme-toggle:hover { border-color: var(--yellow); color: var(--yellow); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.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-menu {
  display: none; position: fixed; inset: 0; top: 62px; z-index: 99;
  background: rgba(0,0,0,.97); backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem; padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; width: 100%; text-align: center;
  color: var(--white); text-decoration: none;
  font-size: 1.4rem; font-weight: 700; padding: 1rem;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu a.mob-cta {
  background: var(--yellow); color: #000 !important;
  border-radius: 10px; border: none; margin-top: 1rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  #navLinks { display: none; }
}

/* ─── FLOAT TEXT BUTTON ─── */
.float-text {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  background: var(--yellow); color: #000;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 800; font-size: .95rem; text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 4px 24px rgba(255,209,0,.45);
  transition: transform .2s, box-shadow .2s;
}
.float-text:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,209,0,.55); }
.float-text-pulse {
  width: 10px; height: 10px; background: #111; border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }

/* ─── BLOG ─── */
.blog-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.blog-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.blog-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; }
.blog-card-date { color: var(--yellow); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .5rem; }
.blog-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; letter-spacing: -.3px; line-height: 1.3; }
.blog-card p { color: var(--gray); font-size: .88rem; line-height: 1.6; }
.blog-card-arrow { color: var(--yellow); font-size: .8rem; font-weight: 700; margin-top: .85rem; display: inline-block; }

/* ─── FEATURED BLOG POST ─── */
.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 3rem; text-decoration: none; transition: border-color .2s; }
.blog-featured:hover { border-color: var(--yellow); }
.blog-featured-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.blog-featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-tag { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,209,0,.1); border: 1px solid rgba(255,209,0,.3); color: var(--yellow); font-size: .68rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1rem; width: fit-content; }
.blog-featured-body h3 { color: var(--white); font-size: 1.5rem; font-weight: 900; letter-spacing: -.8px; line-height: 1.25; margin-bottom: .85rem; }
.blog-featured-body p { color: var(--gray); font-size: .95rem; line-height: 1.75; margin-bottom: 1.25rem; }
.blog-featured-cta { color: var(--yellow); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 800px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 220px; }
}
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post-date { color: var(--yellow); font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.blog-post h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 1.5rem; }
.blog-post p { color: var(--offwhite); font-size: 1rem; line-height: 1.85; margin-bottom: 1.35rem; }
.blog-back { display: inline-block; color: var(--yellow); text-decoration: none; font-weight: 700; font-size: .85rem; margin-bottom: 2rem; }
.blog-back:hover { text-decoration: underline; }
.breadcrumb { color: var(--gray); font-size: .8rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; text-align: center; }
  .hero-btns, .hero-trust { justify-content: center; }
  .hero-right { display: none; }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  nav { padding: .9rem 1.25rem; }
  .nav-links { display: none; }
  .frow { grid-template-columns: 1fr; }
}
