/* Roof Masters & Remodeling - generated */
:root {
  --bg: #0b1626; --bg2: #0f1d33; --bg3: #16294a;
  --accent: #3b82f6; --accent2: #60a5fa; --accent-dark: #1d4ed8;
  --text: #eef4fb; --text-dim: #9fb1c8;
  --line: rgba(255,255,255,0.08); --line-accent: rgba(59,130,246,0.30);
  --shadow: 0 20px 60px rgba(5,15,30,0.5);
  --radius: 16px; --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Inter', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.7; font-weight: 400; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--bg); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* Topbar */
.topbar { background: #0f1d33; color: var(--text); font-size: 13px; border-bottom: 1px solid var(--line); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 16px; flex-wrap: wrap; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar i { color: var(--accent); margin-right: 7px; }
.topbar a { color: var(--text); }
.topbar a:hover { color: var(--accent2); }
.topbar__social { display: flex; gap: 14px; }
.hide-mobile { display: inline; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(13,13,18,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav.scrolled { background: rgba(13,13,18,0.99); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; display: grid; place-items: center; background: var(--accent); color: var(--bg); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,0.08); font-family: var(--font-display); font-size: 22px; font-weight: 700; transition: transform 0.4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; color: var(--text); }
.brand__sub { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-top: 4px; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--text-dim); position: relative; padding: 6px 0; }
.nav__links a:not(.nav__cta)::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s var(--ease); }
.nav__links a:not(.nav__cta):hover { color: var(--accent2); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.active { color: var(--accent2); }
.nav__links a.active::after { width: 100%; }
.nav__cta { background: var(--accent); color: var(--bg) !important; padding: 12px 24px !important; border-radius: 50px; font-weight: 600 !important; letter-spacing: 0.06em !important; transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav__cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(232,69,60,0.35); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.nav__toggle span { height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; letter-spacing: 0.04em; cursor: pointer; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.btn--primary { background: var(--accent); color: var(--bg); box-shadow: 0 12px 28px rgba(232,69,60,0.35); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(232,69,60,0.45); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent2); transform: translateY(-3px); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 0 100px; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,13,18,0.85) 0%, rgba(13,13,18,0.55) 45%, rgba(13,13,18,0.80) 100%), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; transform: scale(1.05); animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom { to { transform: scale(1.14); } }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 70%, rgba(232,69,60,0.10) 0%, transparent 55%); }
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); background: rgba(255,255,255,0.06); border: 1px solid var(--line); padding: 8px 16px; border-radius: 50px; margin-bottom: 24px; box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.hero__stars { color: var(--accent); display: inline-flex; gap: 2px; }
.hero__title { font-family: var(--font-display); font-size: clamp(48px, 9vw, 104px); line-height: 1.0; color: var(--text); margin-bottom: 24px; letter-spacing: 2px; }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--text-dim); max-width: 560px; margin-bottom: 36px; font-weight: 300; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); z-index: 2; }
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--accent), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Stats */
.stats { padding: 56px 0; background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 12px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: var(--line); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(40px, 6vw, 62px); color: var(--accent); line-height: 1; }
.stat__label { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-top: 12px; font-weight: 600; }

/* Section head */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; position: relative; padding-left: 32px; font-weight: 600; }
.section-head--center .section-head__eyebrow { padding-left: 0; }
.section-head__eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 22px; height: 1px; background: var(--accent); transform: translateY(-50%); }
.section-head--center .section-head__eyebrow::before { display: none; }
.section-head__title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); line-height: 1.05; color: var(--text); margin-bottom: 20px; letter-spacing: 1px; }
.section-head__sub { font-size: 16px; color: var(--text-dim); max-width: 560px; font-weight: 300; }
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

/* Services */
.services { padding: 120px 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px 30px; position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(232,69,60,0.08), transparent 55%); opacity: 0; transition: opacity 0.35s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-accent); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; background: rgba(232,69,60,0.12); color: var(--accent); border-radius: 16px; font-size: 22px; margin-bottom: 22px; transition: background 0.35s var(--ease), color 0.35s var(--ease); }
.service-card:hover .service-card__icon { background: var(--accent); color: var(--bg); }
.service-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.3px; }
.service-card p { color: var(--text-dim); font-size: 15px; font-weight: 300; }
.service-card--featured { border-color: var(--line-accent); }
.service-card__badge { position: absolute; top: 18px; right: 18px; background: var(--accent); color: var(--bg); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; }

/* About */
.about { padding: 120px 0; background: var(--bg2); }
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__img { aspect-ratio: 4/5; border-radius: var(--radius-lg); background-size: cover; background-position: center; box-shadow: var(--shadow); }
.about__badge { position: absolute; bottom: -26px; right: -16px; background: var(--bg3); border: 1px solid var(--line); padding: 20px 26px; border-radius: 16px; text-align: center; box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.about__badge-num { display: block; font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--accent); }
.about__badge-stars { color: var(--accent); display: block; margin: 6px 0 4px; font-size: 13px; }
.about__badge-text { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.about__content h2 { margin: 8px 0 24px; }
.about__content p { color: var(--text-dim); margin-bottom: 18px; font-weight: 300; }
.about__list { margin: 28px 0 32px; }
.about__list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--text); font-size: 15px; }
.about__list i { color: var(--accent); }

/* Gallery */
.gallery { padding: 120px 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { position: relative; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; cursor: pointer; transition: transform 0.4s var(--ease); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6)); }
.gallery__item:hover { transform: scale(1.02); }
.gallery__tag { position: absolute; bottom: 16px; left: 16px; z-index: 2; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; font-weight: 600; padding: 5px 12px; background: rgba(0,0,0,0.45); border-radius: 50px; backdrop-filter: blur(6px); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* Reviews */
.reviews { padding: 120px 0; background: var(--bg2); overflow: hidden; }
.reviews__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.reviews__rating-stars { color: var(--accent); font-size: 18px; }
.reviews__rating-text { color: var(--text-dim); font-size: 15px; }
.reviews__rating-text strong { color: var(--text); }
.reviews__track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reviews__track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc(33.333% - 15px); min-width: 300px; background: var(--bg3); border: 1px solid var(--line); border-radius: 26px; padding: 32px; scroll-snap-align: start; transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease); }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--line-accent); }
.review-card__stars { color: var(--accent); margin-bottom: 18px; font-size: 14px; }
.review-card p { color: var(--text-dim); line-height: 1.7; margin-bottom: 26px; font-family: 'Inter', sans-serif; font-style: italic; font-size: 17px; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--bg); display: grid; place-items: center; font-weight: 600; font-size: 18px; }
.review-card__author strong { display: block; font-size: 15px; color: var(--text); }
.review-card__source { font-size: 12px; color: var(--text-dim); display: inline-flex; align-items: center; gap: 5px; }
.reviews__nav { display: flex; gap: 12px; justify-content: center; margin-top: 14px; }
.reviews__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--text); display: grid; place-items: center; background: var(--bg3); transition: all 0.25s var(--ease); }
.reviews__btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* Visit */
.visit { padding: 120px 0; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.visit__info { display: flex; flex-direction: column; gap: 20px; }
.visit__card { display: flex; gap: 20px; background: var(--bg2); border: 1px solid var(--line); border-radius: 16px; padding: 26px; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.visit__card:hover { box-shadow: var(--shadow); border-color: var(--line-accent); }
.visit__card-icon { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(232,69,60,0.12); color: var(--accent); font-size: 20px; }
.visit__card h3 { font-family: var(--font-display); font-size: 22px; color: var(--text); margin-bottom: 8px; letter-spacing: 0.3px; }
.visit__card p { color: var(--text-dim); font-size: 15px; font-weight: 300; }
.visit__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--accent2); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.visit__link i { transition: transform 0.25s var(--ease); }
.visit__link:hover i { transform: translateX(5px); }
.hours { width: 100%; margin-top: 6px; }
.hours li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--text-dim); }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--text); font-weight: 500; }
.visit__map { border-radius: 26px; overflow: hidden; border: 1px solid var(--line); min-height: 460px; box-shadow: var(--shadow); }
.visit__map iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

/* Book CTA */
.book { padding: 100px 0; background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); position: relative; overflow: hidden; }
.book::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1920&q=80') center/cover; opacity: 0.12; mix-blend-mode: overlay; }
.book__inner { position: relative; z-index: 2; max-width: 720px; }
.book__content .section-head__eyebrow { color: rgba(255,255,255,0.85); }
.book__content .section-head__eyebrow::before { background: rgba(255,255,255,0.6); }
.book__title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 72px); line-height: 1.05; color: #fff; margin: 10px 0 20px; letter-spacing: 1px; }
.book__sub { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 460px; margin-bottom: 32px; font-weight: 300; }
.book__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.book__cta .btn--primary { background: #fff; color: var(--accent-dark); }
.book__cta .btn--primary:hover { background: rgba(255,255,255,0.92); }
.book__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.book__cta .btn--ghost:hover { border-color: #fff; color: #fff; }

/* Footer */
.footer { background: #0b1626; color: var(--text); padding-top: 70px; }
.brand--footer .brand__name { color: var(--text); }
.brand--footer .brand__mark { background: var(--accent); color: var(--bg); }
.footer__tag { color: rgba(247,243,236,0.7); font-size: 14px; margin: 18px 0; max-width: 320px; font-weight: 300; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; color: var(--text); transition: all 0.25s var(--ease); }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__col h4 { font-family: var(--font-display); font-size: 18px; color: var(--accent2); margin-bottom: 18px; letter-spacing: 1px; }
.footer__col a, .footer__col p { display: block; color: rgba(247,243,236,0.7); font-size: 14px; padding: 6px 0; font-weight: 300; }
.footer__col a:hover { color: var(--accent2); }
.footer__col p i, .footer__col a i { color: var(--accent2); margin-right: 8px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; font-size: 13px; color: rgba(247,243,236,0.6); flex-wrap: wrap; gap: 8px; }

/* Back to top */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: var(--bg); display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s var(--ease); z-index: 40; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner, .visit__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__badge { right: 16px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex-basis: calc(50% - 11px); }
}
@media (max-width: 768px) {
  .topbar { font-size: 12px; }
  .topbar__inner { height: auto; padding: 8px 24px; gap: 8px; }
  .hide-mobile { display: none; }
  .nav__toggle { display: flex; }
  .nav__links { position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100vh; background: var(--bg); border-left: 1px solid var(--line); flex-direction: column; justify-content: center; gap: 28px; transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 55; padding: 40px; }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 18px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat:not(:last-child)::after { display: none; }
  .stats, .services, .about, .gallery, .reviews, .visit, .book { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .review-card { flex-basis: 85%; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 110px 0 70px; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__bg { animation: none; }
  .reveal { opacity: 1; transform: none; }
}