/* ============================================================
   Pure Spray — Main Stylesheet
   ============================================================ */

/* === Variables ============================================= */
:root {
  --dark:        #091515;
  --dark-2:      #0F2828;
  --blue:        #1D8080;
  --blue-dark:   #155E5E;
  --blue-light:  #E2F2F2;
  --amber:       #E6E688;
  --amber-dark:  #CCCC5A;
  --text:        #1A2E2E;
  --text-light:  #4C6C6C;
  --bg:          #FFFFFF;
  --bg-light:    #F4F4E8;
  --bg-dark:     #E8F0F0;
  --border:      #C4D8D8;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:        0.2s ease;
}

/* === Reset ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--font); }

/* === Typography ============================================ */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }
p  { line-height: 1.75; }

/* === Layout ================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-dark { background: var(--dark); color: white; }
.section-light { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); font-size: 1.0625rem; max-width: 580px; margin: 0 auto; }
.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: rgba(255,255,255,.65); }

/* === Buttons =============================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; transition: var(--ease);
  cursor: pointer; border: 2px solid transparent; text-align: center;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-primary  { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white    { background: white; color: var(--dark); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: white; color: var(--dark); }
.btn-blue     { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark     { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); }

/* === Header ================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: white; border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 70px;
}
.header-logo img { height: 42px; width: auto; }
.header-nav {
  display: flex; align-items: center; gap: 1.5rem; margin-left: auto;
}
.header-nav a {
  font-size: .9375rem; font-weight: 500; color: var(--text);
  transition: color var(--ease);
}
.header-nav a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue) !important; color: white !important;
  padding: .5rem 1.125rem; border-radius: var(--radius);
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.header-phone {
  display: flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9375rem; color: var(--dark);
  white-space: nowrap; transition: color var(--ease);
}
.header-phone:hover { color: var(--blue); }
.header-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
  width: 36px; height: 36px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem; gap: 1rem;
  position: absolute; top: 70px; left: 0; right: 0;
  box-shadow: var(--shadow-md); z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--text); }
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mobile-cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: .5rem;
}
.mobile-nav .mobile-cta-row a {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem; border-radius: var(--radius); font-weight: 600;
}
.mobile-nav .btn-call { background: var(--dark); color: white !important; }
.mobile-nav .btn-quote { background: var(--amber); color: var(--dark) !important; }

@media (max-width: 768px) {
  .header-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
}

/* === Hero ================================================== */
.hero {
  position: relative; min-height: 620px;
  background: url(../img/projects/exterieur-maison.png) center top / cover no-repeat;
  color: white; padding: 7rem 0 5.5rem;
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(6,14,14,.97) 0%, rgba(9,26,26,.92) 55%, rgba(9,26,26,.6) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 3; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(230,230,136,.12); border: 1px solid rgba(230,230,136,.28);
  color: var(--amber); font-size: .8125rem; font-weight: 600;
  padding: .375rem .875rem; border-radius: 99px; margin-bottom: 1.25rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--amber); }
.hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,.75);
  margin-bottom: 2.25rem; max-width: 620px; line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-number {
  display: block; font-size: 1.75rem; font-weight: 800; color: white; line-height: 1;
}
.hero-stat-label {
  display: block; font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: .25rem;
}

@media (max-width: 600px) {
  .hero { padding: 4rem 0 3rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* === Trust Bar ============================================= */
.trust-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 500; color: var(--dark-2);
  white-space: nowrap;
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }
.trust-item .trust-highlight { color: var(--blue); font-weight: 700; }

/* === Services ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.service-card:hover {
  border-color: var(--blue); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; background: var(--blue);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.125rem;
}
.service-icon svg { color: white; }
.service-card h3 { margin-bottom: .5rem; color: var(--dark); }
.service-card p { color: var(--text-light); font-size: .9375rem; margin-bottom: 1.25rem; line-height: 1.6; }
.service-link {
  color: var(--blue); font-weight: 600; font-size: .875rem;
  display: inline-flex; align-items: center; gap: .25rem;
  transition: gap var(--ease);
}
.service-link:hover { gap: .5rem; }

/* === Gallery =============================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.gallery-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.gallery-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.gallery-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-dark);
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: .75rem; color: var(--text-light);
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  flex-direction: column; gap: .25rem;
}
.gallery-img-placeholder svg { color: var(--text-light); opacity: .5; }
.gallery-img-label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.65); color: white;
  font-size: .6875rem; font-weight: 700; padding: 3px 8px;
  border-radius: 4px; letter-spacing: .06em; text-transform: uppercase;
}
.gallery-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.service-tag {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .75rem; font-weight: 700; padding: 3px 10px;
  border-radius: 99px; margin-bottom: .75rem; letter-spacing: .02em;
}
.gallery-card-body h3 { font-size: 1rem; margin-bottom: .375rem; color: var(--dark); }
.gallery-card-body p { color: var(--text-light); font-size: .875rem; margin-bottom: 1rem; line-height: 1.6; }
.gallery-cta { font-size: .875rem; color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: .25rem; }
.gallery-cta:hover { gap: .5rem; }
.gallery-note { text-align: center; margin-top: 2rem; color: var(--text-light); font-size: .9375rem; }
.gallery-note a { color: var(--blue); font-weight: 600; }

/* === Why Us ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem 2rem;
}
.why-item { text-align: center; }
.why-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
}
.why-icon svg { color: var(--amber); }
.why-item h3 { color: white; font-size: 1rem; margin-bottom: .375rem; }
.why-item p { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.6; }

/* === Featured Service ====================================== */
.featured-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.featured-tag {
  display: inline-block; background: var(--amber); color: var(--dark);
  font-size: .75rem; font-weight: 700; padding: 4px 12px;
  border-radius: 99px; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.featured-text h2 { margin-bottom: 1rem; color: var(--dark); }
.featured-text > p { color: var(--text-light); margin-bottom: 1.5rem; }
.featured-points { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.featured-point { display: flex; align-items: flex-start; gap: .75rem; }
.featured-point svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.featured-point p { font-size: .9375rem; color: var(--text); margin: 0; }
.featured-image {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
}
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-image-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem; color: var(--text-light); font-size: .875rem;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  width: 100%; height: 100%; justify-content: center;
}

@media (max-width: 900px) {
  .featured-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-inner .featured-image { order: -1; }
}

/* === Testimonials ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-card blockquote {
  color: var(--text); font-size: .9375rem; line-height: 1.75;
  margin-bottom: 1.25rem; font-style: italic; border: none; padding: 0;
}
.testimonial-meta { display: flex; align-items: center; gap: .875rem; }
.testimonial-avatar {
  width: 42px; height: 42px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-weight: 700;
  font-size: .875rem; flex-shrink: 0;
}
.testimonial-info strong { display: block; font-size: .875rem; color: var(--dark); }
.testimonial-info span  { font-size: .8125rem; color: var(--text-light); }

/* === Social Proof ========================================== */
.social-proof {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white; padding: 3.5rem 0; text-align: center;
}
.social-proof h2 { color: white; margin-bottom: .75rem; }
.social-proof p  { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; font-size: 1.0625rem; }
.social-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: .5rem;
  background: white; color: var(--blue); padding: .75rem 1.5rem;
  border-radius: var(--radius); font-weight: 600; font-size: .9375rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.social-link svg { flex-shrink: 0; }

/* === Service Areas ========================================= */
.areas-grid {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-top: 2rem;
}
.area-tag {
  background: var(--bg-light); border: 1.5px solid var(--border);
  color: var(--text); padding: .5rem 1.25rem;
  border-radius: 99px; font-size: .9375rem; font-weight: 500;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.area-tag:hover { background: var(--blue); color: white; border-color: var(--blue); }
.areas-note {
  text-align: center; margin-top: 1.5rem;
  color: var(--text-light); font-size: .9375rem;
}

/* === FAQ =================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius-lg);
  margin-bottom: .75rem; border: 1.5px solid var(--border);
  overflow: hidden; transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--blue); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; cursor: pointer;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--dark);
  transition: color var(--ease);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-dark); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
  color: var(--text-light);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: white; }
.faq-answer {
  display: none; padding: 0 1.5rem 1.375rem;
  color: var(--text-light); line-height: 1.75; font-size: .9375rem;
}
.faq-item.open .faq-answer { display: block; }

/* === Quote Section ========================================= */
.quote-section { background: var(--dark); }
.quote-section .section-header h2 { color: white; }
.quote-section .section-header p { color: rgba(255,255,255,.65); }
.quote-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start;
}
.quote-left p { color: rgba(255,255,255,.7); margin-bottom: 1.75rem; }
.quote-benefits { display: flex; flex-direction: column; gap: .875rem; }
.quote-benefit {
  display: flex; align-items: flex-start; gap: .75rem;
  color: rgba(255,255,255,.75); font-size: .9375rem;
}
.quote-benefit svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.quote-form {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block; font-size: .8125rem; font-weight: 600;
  color: var(--dark-2); margin-bottom: .375rem; text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9375rem; font-family: var(--font); color: var(--text);
  background: var(--bg-light); transition: border-color var(--ease), background var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue); background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-upload {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 1.5rem 1rem; text-align: center; background: var(--bg-light);
  cursor: pointer; transition: border-color var(--ease);
}
.form-upload:hover { border-color: var(--blue); }
.form-upload input[type="file"] { display: none; }
.form-upload-icon { color: var(--blue); margin: 0 auto .5rem; }
.form-upload p { color: var(--text-light); font-size: .875rem; }
.form-upload strong { color: var(--dark); font-size: .9375rem; }
.form-submit {
  width: 100%; margin-top: .5rem;
  padding: 1rem; font-size: 1rem;
}

@media (max-width: 1024px) {
  .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 1.75rem 1.25rem; }
}

/* === Footer ================================================ */
.footer {
  background: #050E0E; color: rgba(255,255,255,.6);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .625rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; transition: background var(--ease);
}
.footer-social a:hover { background: var(--blue); color: white; }
.footer-col h4 {
  color: white; font-size: .8125rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .625rem; }
.footer-col ul a { font-size: .875rem; transition: color var(--ease); }
.footer-col ul a:hover { color: white; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; margin-bottom: .875rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.footer-contact a:hover { color: white; }
.rbq-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  padding: .375rem .875rem; border-radius: 99px;
  font-size: .8125rem; color: rgba(255,255,255,.7); margin-top: .5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: .8125rem;
}
.footer-bottom a:hover { color: white; }

@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; text-align: center; } }

/* === Mobile Sticky CTA ===================================== */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1rem;
  grid-template-columns: 1fr 1fr; gap: .75rem;
}
.mobile-sticky-call {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: white; color: var(--dark); padding: .75rem;
  border-radius: var(--radius); font-weight: 600; font-size: .9375rem;
}
.mobile-sticky-quote {
  display: flex; align-items: center; justify-content: center;
  background: var(--amber); color: var(--dark); padding: .75rem;
  border-radius: var(--radius); font-weight: 600; font-size: .9375rem;
}

@media (max-width: 768px) {
  .mobile-sticky { display: grid; }
  body { padding-bottom: 76px; }
}
@media (min-width: 769px) {
  .mobile-sticky { display: none !important; }
}

/* === Utilities ============================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none; }

/* ============================================================
   WOW FACTOR ADDITIONS
   ============================================================ */

/* === Ticker ================================================ */
.ticker {
  background: var(--blue); padding: .65rem 0;
  overflow: hidden; white-space: nowrap; user-select: none;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 0 2.5rem; color: white;
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.ticker-sep {
  width: 5px; height: 5px; background: var(--amber);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === Scroll Reveal ========================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }
.reveal-d6 { transition-delay: .48s; }
.reveal-d7 { transition-delay: .56s; }

/* === Service Cards with Photos ============================= */
.service-card-img {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden; margin: -1.75rem -1.75rem 1.25rem;
  aspect-ratio: 16/9;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
/* Remove icon from cards that have photos */
.service-card.has-photo .service-icon { display: none; }

/* === Gallery: Full-Photo Cards ============================= */
.gallery-card-photo {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: box-shadow var(--ease), transform var(--ease);
  background: var(--bg-dark);
}
.gallery-card-photo:hover {
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.25);
  transform: translateY(-4px);
}
.gallery-photo-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.gallery-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.gallery-card-photo:hover .gallery-photo-wrap img { transform: scale(1.06); }
.gallery-photo-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(6,14,14,.75); backdrop-filter: blur(4px);
  color: white; font-size: .6875rem; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
}
.gallery-photo-body { padding: 1.375rem 1.375rem 1.625rem; }
.gallery-photo-body .service-tag { margin-bottom: .625rem; }
.gallery-photo-body h3 { font-size: 1.0625rem; margin-bottom: .375rem; color: var(--dark); }
.gallery-photo-body p { color: var(--text-light); font-size: .9rem; margin-bottom: 1rem; line-height: 1.65; }
.gallery-photo-cta {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .875rem; font-weight: 600; color: var(--blue);
  transition: gap var(--ease);
}
.gallery-photo-cta:hover { gap: .55rem; }

/* === Project Band ========================================== */
.project-band {
  position: relative; min-height: 500px;
  display: flex; align-items: center; overflow: hidden;
  padding: 6rem 0;
}
.project-band-bg {
  position: absolute; inset: 0;
  background: url(../img/projects/armoires-cuisine.png) center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.project-band:hover .project-band-bg { transform: scale(1.0); }
.project-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg,
    rgba(6,14,14,.97) 0%,
    rgba(9,26,26,.94) 40%,
    rgba(9,26,26,.55) 70%,
    rgba(9,26,26,.2) 100%);
}
.project-band-content {
  position: relative; z-index: 1; max-width: 560px; color: white;
}
.project-band-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(230,230,136,.12); border: 1px solid rgba(230,230,136,.3);
  color: var(--amber); font-size: .8rem; font-weight: 700;
  padding: .375rem .875rem; border-radius: 99px; margin-bottom: 1.25rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.project-band-content h2 {
  color: white; font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem; line-height: 1.15;
}
.project-band-content p {
  color: rgba(255,255,255,.72); font-size: 1.0625rem;
  line-height: 1.75; margin-bottom: 2rem;
}

/* === Stats count-up ======================================= */
.hero-stat-number { font-size: 2rem; }
[data-count] { font-variant-numeric: tabular-nums; }

/* === Services page hero ==================================== */
.page-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: 5rem 0 3.5rem;
  color: white;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,14,14,.5) 0%, rgba(6,14,14,.9) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: rgba(255,255,255,.55); margin-bottom: 1rem;
}
.page-hero-content .breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.page-hero-content .breadcrumb a:hover { color: var(--amber); }
.page-hero-content .breadcrumb span { color: rgba(255,255,255,.35); }
.page-hero-content h1 { color: white; margin-bottom: .875rem; }
.page-hero-content p { color: rgba(255,255,255,.75); font-size: 1.125rem; max-width: 640px; }

/* === Service page process ================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; counter-reset: steps;
}
.process-step { position: relative; text-align: center; }
.process-step::before {
  content: counter(steps); counter-increment: steps;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--blue); border-radius: 50%;
  color: white; font-size: 1.125rem; font-weight: 800; margin: 0 auto 1rem;
}
.process-step h3 { margin-bottom: .5rem; font-size: 1rem; }
.process-step p { color: var(--text-light); font-size: .9rem; }

/* === Service page single image hero card ================== */
.service-hero-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Breadcrumb ============================================ */
.breadcrumb-bar {
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  padding: .625rem 0; font-size: .8125rem; color: var(--text-light);
}
.breadcrumb-inner { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--text-light); transition: color var(--ease); }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-inner span.sep { color: var(--border); }
.breadcrumb-inner span.current { color: var(--text); font-weight: 500; }

/* === Responsive tweaks ===================================== */
@media (max-width: 768px) {
  .project-band { padding: 4rem 0; min-height: auto; }
  .page-hero { min-height: 320px; padding: 4rem 0 2.5rem; }
}

