/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #C1272D;
  --red-dk:  #9B1B20;
  --red-lt:  #e8686d;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --grey:    #2d2d2d;
  --mid:     #444444;
  --light:   #f5f5f5;
  --white:   #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(0,0,0,.12);
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--white); }

/* section-tag on light backgrounds */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* section-tag on dark backgrounds — use lighter red for contrast */
.section-tag-light {
  color: var(--red-lt);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 48px;
  color: inherit;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 2px solid var(--red);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-wrap img { height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }

.main-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--red);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dk); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  justify-content: center;
  border-radius: var(--radius);
  border: none;
  padding: 14px;
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: max(88vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(193,39,45,.15) 0%, transparent 50%),
    linear-gradient(to right, rgba(0,0,0,.85) 40%, rgba(0,0,0,.3) 100%),
    url('/images/hero-desktop.webp') center/cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
  min-height: 500px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-lt);
  border: 1px solid var(--red-lt);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-title span { color: var(--red-lt); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; min-width: 120px; min-height: 60px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* ── WHY ROSNETT ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--light);
  border-radius: 10px;
  padding: 32px 28px;
  border-top: 3px solid var(--red);
  transition: var(--transition);
  will-change: transform;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-card p { font-size: .92rem; color: var(--mid); line-height: 1.65; }

/* ── GALLERY ── */
.gallery-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-track {
  display: flex;
  transition: transform .4s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 8px;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 653 / 490;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 653 / 490;
  background: var(--grey);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  border: 2px dashed rgba(255,255,255,.3);
  gap: 8px;
}
.gallery-placeholder span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.gallery-placeholder p { font-size: .8rem; }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-btn:hover { background: var(--red-dk); }
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* Dots — 44px tap target via padding, visually still small */
.dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.dot::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: var(--transition);
}
.dot.active::after { background: var(--red-lt); transform: scale(1.4); }
.dot:hover::after { background: rgba(255,255,255,.7); }

/* ── SERVICES SNAP ── */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 2px solid #ddd;
  color: var(--dark);
  transition: var(--transition);
  text-transform: uppercase;
  will-change: transform;
}
.service-chip:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 28px;
}
.stars { color: #f5c518; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: .95rem; color: rgba(255,255,255,.9); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { font-family: var(--font-display); font-weight: 700; color: var(--red-lt); letter-spacing: .06em; }

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.loc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.location-item p, .location-item a { font-size: .95rem; color: var(--mid); }
.location-item a:hover { color: var(--red); }

.map-card {
  width: 100%;
  height: 400px;
  background: var(--light);
  border-radius: 12px;
  border: 3px solid #e0e0e0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 16px;
}
.map-card-icon { font-size: 3rem; }
.map-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.map-card-sub {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 48px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.cta-banner p { color: rgba(255,255,255,.95); font-size: 1rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; opacity: .9; filter: brightness(0) invert(1); }
.footer-col p, .footer-col a { font-size: .9rem; line-height: 1.7; }
.footer-col a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 36px 0 32px;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; }

/* ── SERVICES PAGE ── */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 32px 28px;
  border-left: 4px solid var(--red);
  transition: var(--transition);
  will-change: transform;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(232,104,109,.6);
  line-height: 1;
  margin-bottom: 6px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: .9rem; color: var(--mid); line-height: 1.65; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  filter: brightness(0.88);
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}
.about-text p { font-size: .98rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .gallery-slide { flex: 0 0 50%; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .gallery-slide { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; }
  .hero-inner { padding: 60px 24px; }
  .section-title { margin-bottom: 32px; }
  .hero-bg {
    background:
      linear-gradient(135deg, rgba(193,39,45,.15) 0%, transparent 50%),
      linear-gradient(to right, rgba(0,0,0,.85) 40%, rgba(0,0,0,.3) 100%),
      url('/images/hero-mobile.webp') center/cover no-repeat;
  }
}

/* ── FADE IN ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── LOCAL SEO SECTION ─────────────────────────────────── */
.local-seo-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.local-seo-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.local-seo-section p {
  max-width: 760px;
  margin: 0 auto 16px auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
}
