/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #4A8C2A;
  --green-dark: #3a6e20;
  --green-light: #6aac4a;
  --orange: #E07820;
  --orange-light: #f09040;
  --dark: #222222;
  --mid: #444444;
  --light: #f5f5f3;
  --white: #ffffff;
  --border: #e0e0d8;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --radius: 6px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--green);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 64px; width: auto; mix-blend-mode: multiply; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  color: var(--dark); padding: 6px 14px; border-radius: var(--radius);
  transition: all 0.2s; letter-spacing: 0.02em; text-transform: uppercase;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(74,140,42,0.08); }
.lang-switch {
  display: flex; align-items: center; gap: 4px; margin-left: 16px;
  border-left: 1px solid var(--border); padding-left: 16px;
}
.lang-btn {
  font-size: 0.8rem; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  cursor: pointer; border: none; background: transparent; color: var(--mid);
  transition: all 0.2s;
}
.lang-btn.active { background: var(--green); color: white; }
.nav-cta {
  background: var(--orange); color: white !important;
  padding: 8px 18px !important; border-radius: var(--radius) !important;
  font-weight: 700 !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--orange-light) !important; color: white !important; }

/* Hamburger – only shown on mobile */
#mob-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 0;
}
#mob-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile drawer */
#mob-drawer {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
#mob-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
#mob-drawer-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}
#mob-drawer.is-open #mob-drawer-bg {
  background: rgba(0,0,0,0.5);
}
#mob-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
#mob-drawer.is-open #mob-drawer-panel {
  transform: translateX(0);
}
#mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid var(--green);
}
#mob-drawer-head img { height: 48px; mix-blend-mode: multiply; }
#mob-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--dark); padding: 4px;
}
#mob-links { display: flex; flex-direction: column; flex: 1; overflow-y: auto; }
#mob-links a {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: var(--dark); text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
}
#mob-links a:active { background: rgba(74,140,42,0.08); }
#mob-links a.mob-cta-link {
  margin: 16px; border-radius: var(--radius); border-bottom: none;
  background: var(--orange); color: white; text-align: center;
}
#mob-lang {
  display: flex; gap: 8px; padding: 16px 20px;
  border-top: 1px solid var(--border);
}
#mob-lang button {
  flex: 1; padding: 10px; border: 1px solid var(--border);
  border-radius: var(--radius); background: white;
  font-weight: 700; cursor: pointer; color: var(--mid); font-size: 0.9rem;
}
#mob-lang button.active { background: var(--green); color: white; border-color: var(--green); }

@media (max-width: 768px) {
  #mob-btn { display: flex; }
  .nav-links { display: none; }
  nav { height: 64px; padding: 0 16px; }
  .nav-logo img { height: 52px; }
  main { padding-top: 64px; }
}

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }
main { padding-top: 72px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 60px; background: var(--dark); position: relative;
  z-index: 2;
}
.hero-text::after {
  content: ''; position: absolute; top: 0; right: -60px; bottom: 0; width: 80px;
  background: var(--dark); transform: skewX(-6deg); z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,140,42,0.2); border: 1px solid var(--green);
  color: var(--green-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 24px; width: fit-content;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 0.95; color: white; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 600; color: #aaa; margin-bottom: 32px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-desc {
  color: #ccc; font-size: 1.05rem; line-height: 1.7; max-width: 460px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-primary {
  background: var(--orange); color: white; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,120,32,0.4); }
.btn-secondary {
  background: transparent; color: white; font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green-light); }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  position: absolute; bottom: 24px; left: 40px; right: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; z-index: 2;
}
.stat-card {
  background: rgba(10, 22, 10, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(74,124,47,0.45); border-radius: var(--radius);
  padding: 16px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.stat-card .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-card .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.93); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
@media(max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 32px; }
  .hero-text::after { display: none; }
  .hero-image { height: 60vw; min-height: 300px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
}
@media(max-width: 500px) {
  .hero-text { padding: 40px 20px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 8px; bottom: 10px; left: 16px; right: 16px; }
  .stat-card .num { font-size: 1.4rem; }
}

/* ===== TICKER ===== */
.ticker { background: var(--green); overflow: hidden; padding: 12px 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-inner span {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: white; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 40px;
}
.ticker-inner span::after { content: ' ◆'; color: var(--orange); margin-left: 40px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green); }
h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 20px; color: var(--dark);
}
h2 em { color: var(--orange); font-style: normal; }
.section-intro { font-size: 1.1rem; color: var(--mid); max-width: 560px; line-height: 1.7; }

/* ===== SERVICES ===== */
.services-bg { background: var(--light); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--green); }
.service-img { height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.service-body p { font-size: 0.95rem; color: var(--mid); line-height: 1.6; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; background: rgba(74,140,42,0.1); color: var(--green);
  border: 1px solid rgba(74,140,42,0.2);
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 56px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, var(--green), var(--orange));
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--dark);
  border: 3px solid var(--green); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--orange);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.process-step h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--mid); line-height: 1.5; }
@media(max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
}

/* ===== GALLERY ===== */
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.gallery-grid { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.9rem; }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: white; font-size: 2rem; cursor: pointer; line-height: 1; }
@media(max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
}
@media(max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--orange); color: white; padding: 20px 28px; border-radius: var(--radius);
  font-family: var(--font-display); text-align: center; line-height: 1.2;
  box-shadow: 0 8px 24px rgba(224,120,32,0.4);
}
.about-badge .big { font-size: 2.5rem; font-weight: 700; display: block; }
.about-badge .small { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }
.about-text { padding-bottom: 24px; }
.about-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.98rem; color: var(--mid); line-height: 1.5;
}
.about-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
@media(max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 16px; }
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-bg { background: var(--dark); }
.testimonials-bg h2 { color: white; }
.testimonials-bg .section-label { color: var(--green-light); }
.testimonials-bg .section-label::before { background: var(--green-light); }
.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 12px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px; transition: all 0.25s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); border-color: var(--green); }
.testimonial-card p { color: #ccc; font-size: 0.98rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card p::before { content: '"'; color: var(--orange); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 1rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: white; font-size: 0.95rem; }
.reviewer-loc { font-size: 0.8rem; color: #888; }
@media(max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; margin-top: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius); background: rgba(74,140,42,0.1);
  border: 1px solid rgba(74,140,42,0.2); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item-text a { color: var(--green); font-weight: 500; }
.contact-item-text a:hover { color: var(--orange); }
.contact-form { background: var(--light); border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; color: var(--mid); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: white; color: var(--dark);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,140,42,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.8rem; color: var(--mid); margin-top: 12px; text-align: center; }
@media(max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== CONTACT HOURS (inline in contact-item) ===== */
.contact-hours { display: flex; flex-direction: column; gap: 3px; margin-top: 3px; }
.contact-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; font-size: 0.9rem; color: var(--mid);
}
.contact-hours-time { font-weight: 600; color: var(--green-dark); white-space: nowrap; }
.contact-hours-closed { color: #aaa; font-style: italic; }

/* ===== FOOTER HOURS BAR ===== */
.footer-hours-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0; margin-bottom: 0;
}
.footer-hours-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-hours-bar-icon { font-size: 1rem; opacity: 0.5; }
.footer-hours-bar-item { display: flex; align-items: center; gap: 8px; }
.footer-hours-bar-day { font-size: 0.8rem; color: #777; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-hours-bar-time { font-size: 0.85rem; font-weight: 600; color: #bbb; }
.footer-hours-bar-closed { font-size: 0.85rem; color: #555; font-style: italic; }
.footer-hours-bar-sep { color: #444; font-size: 1rem; }
@media(max-width: 480px) {
  .footer-hours-bar-sep { display: none; }
  .footer-hours-bar-inner { flex-direction: column; gap: 6px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: #aaa; padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 60px; mix-blend-mode: screen; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.9rem; color: #888; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.footer-bottom a { color: #888; }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark); padding: 80px 0 64px;
  border-bottom: 3px solid var(--green);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); font-weight: 700; color: white; line-height: 1.05; }
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { color: #aaa; margin-top: 12px; font-size: 1.1rem; max-width: 560px; }

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; margin-top: 56px;
}
.service-detail-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.25s;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); border-color: var(--green); }
.service-detail-img { height: 220px; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-body { padding: 28px; }
.service-detail-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.service-detail-body p { color: var(--mid); font-size: 0.95rem; line-height: 1.65; margin-bottom: 16px; }
.service-detail-body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-detail-body ul li { font-size: 0.9rem; color: var(--mid); display: flex; align-items: flex-start; gap: 8px; }
.service-detail-body ul li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 80px 0; }

/* ===== REALISATIONS ===== */
.real-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px; border: 1px solid var(--border);
  background: white; font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; color: var(--mid);
}
.filter-btn.active, .filter-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.real-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.real-item { overflow: hidden; border-radius: var(--radius); position: relative; aspect-ratio: 4/3; cursor: pointer; }
.real-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.real-item:hover img { transform: scale(1.08); }
.real-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 24px 16px 12px; opacity: 0; transition: opacity 0.3s;
}
.real-item:hover .real-item-label { opacity: 1; }
.real-item-label span { color: white; font-weight: 600; font-size: 0.9rem; }
@media(max-width: 768px) { .real-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 480px) { .real-grid { grid-template-columns: 1fr; } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
.nav-mobile-only { display: none; }
@media(max-width: 768px) { .nav-mobile-only { display: flex; } }

/* ===== SUCCESS MSG ===== */
.success-msg {
  display: none; background: rgba(74,140,42,0.1); border: 1px solid var(--green);
  color: var(--green-dark); padding: 16px; border-radius: var(--radius); text-align: center;
  font-weight: 600; margin-top: 16px;
}
.success-msg.show { display: block; }

/* ============================================================
   MOBILE-ONLY RESPONSIVE ADDITIONS
   Desktop layout (>1024px) is never touched below.
   All rules are strictly inside media queries.
   ============================================================ */

/* ------ 1024px: tablet landscape ------  */
@media (max-width: 1024px) {
  /* Prevent any horizontal overflow site-wide */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Container: tighter side padding */
  .container { padding: 0 24px; }

  /* Hero: columns shrink a bit, less internal padding */
  .hero-text { padding: 60px 40px; }

  /* About: reduce the huge gap */
  .about-grid { gap: 48px; }
  .about-badge { bottom: -16px; right: -16px; }

  /* Services page grid: allow 2-col before wrapping */
  .services-page-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Footer: 2-col early */
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }

  /* Section padding slightly reduced */
  section { padding: 72px 0; }
}

/* ------ 768px: tablet portrait / large phone ------ */
@media (max-width: 768px) {
  /* Global overflow guard */
  html, body { overflow-x: hidden; max-width: 100%; }
  * { box-sizing: border-box; }

  /* Container */
  .container { padding: 0 20px; }

  /* Section spacing */
  section { padding: 56px 0; }

  /* --- NAV --- */
  nav { height: 64px; padding: 0 16px; }
  .nav-logo img { height: 52px; }
  /* main padding matches smaller nav */
  main { padding-top: 64px; }

  /* --- HERO --- */
  /* Already stacks at 900px; refine padding and image height */
  .hero-text { padding: 48px 20px 40px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 1.1rem; margin-bottom: 20px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-image { height: 55vw; min-height: 260px; }
  .hero-btns { gap: 12px; }
  .btn-primary, .btn-secondary {
    padding: 13px 24px;
    font-size: 0.9rem;
    min-height: 48px; /* touch target */
  }
  .hero-stats { gap: 8px; bottom: 12px; left: 12px; right: 12px; }
  .stat-card { padding: 10px 8px; }
  .stat-card .num { font-size: 1.5rem; }
  .stat-card .lbl { font-size: 0.65rem; }

  /* --- TICKER --- */
  .ticker-inner span { font-size: 0.85rem; padding: 0 24px; }

  /* --- HEADINGS inside sections --- */
  h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); margin-bottom: 14px; }
  .section-intro { font-size: 1rem; }

  /* --- SERVICES GRID (home) --- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .service-img { height: 180px; }
  .service-body { padding: 18px; }

  /* --- PROCESS --- */
  /* Already 2-col at 768; reduce section margin */
  .process-grid { gap: 24px; margin-top: 36px; }
  .step-num { width: 52px; height: 52px; font-size: 1.3rem; margin-bottom: 14px; }
  .process-step h3 { font-size: 1.05rem; }
  .process-step p { font-size: 0.85rem; }

  /* --- GALLERY PREVIEW (home) --- */
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
  /* gallery-grid already handled by existing 768 query */

  /* --- ABOUT --- */
  /* already stacks at 768; fix badge overflow */
  .about-img { margin-bottom: 32px; }
  .about-badge {
    position: relative; bottom: auto; right: auto;
    display: inline-block; margin-top: 12px;
    padding: 14px 20px;
  }
  .about-badge .big { font-size: 2rem; }
  .about-list li { font-size: 0.92rem; }

  /* --- CONTACT PAGE --- */
  .contact-page { padding: 48px 0; }
  /* contact-grid already stacks at 768 */
  .contact-form { padding: 24px 20px; }
  /* form-row already 1-col at 768 */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem; /* prevent iOS zoom on focus (needs ≥16px) */
    padding: 13px 14px;
    min-height: 48px;
  }
  .form-group textarea { min-height: 110px; }
  .btn-primary.form-submit { min-height: 52px; font-size: 1rem; }

  /* --- SERVICES PAGE --- */
  .services-page-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .service-detail-img { height: 200px; }
  .service-detail-body { padding: 20px; }

  /* --- PAGE HERO --- */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .page-hero p { font-size: 1rem; }

  /* --- REALISATIONS filter --- */
  .real-filter { gap: 6px; margin-top: 24px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; min-height: 40px; }
  .real-grid { margin-top: 24px; gap: 10px; }
  /* already 2-col at 768 */

  /* --- CTA BANNER --- */
  /* The green CTA section */
  section[style*="background:var(--green)"] { padding: 56px 0; }

  /* --- FOOTER --- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 48px 0 0; }
  .footer-brand img { height: 48px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column; gap: 6px; text-align: center; padding: 16px 0;
  }

  /* --- LIGHTBOX on mobile --- */
  .lightbox-close { top: 16px; right: 16px; font-size: 1.6rem; padding: 8px; }
  .lightbox img { max-width: 95vw; max-height: 85vh; }

  /* --- Reveal: disable transform on mobile to avoid glitchy paint --- */
  .reveal { opacity: 1; transform: none; }
}

/* ------ 480px: small phones ------ */
@media (max-width: 480px) {
  /* Overflow guard */
  html, body { overflow-x: hidden; }

  /* Container */
  .container { padding: 0 16px; }

  /* Section spacing */
  section { padding: 44px 0; }

  /* --- NAV --- */
  nav { padding: 0 14px; }
  .nav-logo img { height: 46px; }

  /* --- HERO --- */
  .hero-text { padding: 36px 16px 32px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.0; }
  .hero-subtitle { font-size: 0.95rem; letter-spacing: 0.03em; }
  .hero-desc { font-size: 0.9rem; line-height: 1.65; margin-bottom: 24px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero-image { height: 64vw; min-height: 220px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stats { gap: 6px; bottom: 10px; left: 10px; right: 10px; }
  .stat-card { padding: 8px 4px; }
  .stat-card .num { font-size: 1.2rem; }
  .stat-card .lbl { font-size: 0.58rem; }

  /* --- TICKER --- */
  .ticker { padding: 10px 0; }
  .ticker-inner span { font-size: 0.78rem; padding: 0 18px; }

  /* --- HEADINGS --- */
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* --- PROCESS --- */
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .step-num { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.2rem; }

  /* --- SERVICES (home) --- */
  .service-body { padding: 16px; }
  .service-tags { gap: 4px; }
  .tag { font-size: 0.68rem; padding: 2px 8px; }

  /* --- ABOUT --- */
  .about-text { padding-bottom: 0; }
  .about-list { gap: 10px; }
  .about-list li { font-size: 0.88rem; }

  /* --- CONTACT INFO --- */
  .contact-info { gap: 20px; }
  .contact-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .contact-form { padding: 20px 16px; }

  /* --- SERVICES PAGE --- */
  .service-detail-body { padding: 16px; }
  .service-detail-img { height: 180px; }

  /* --- PAGE HERO --- */
  .page-hero { padding: 36px 0 32px; }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  /* --- FILTER BUTTONS --- */
  .real-filter { gap: 6px; }
  .filter-btn { padding: 7px 13px; font-size: 0.78rem; }
  /* real-grid already 1-col at 480px */

  /* --- FOOTER --- */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { font-size: 0.75rem; }

  /* --- GALLERY PREVIEW (home): single column --- */
  .gallery-grid { grid-template-columns: 1fr !important; grid-auto-rows: 220px !important; }
  .gallery-item.wide { grid-column: span 1 !important; }
  .gallery-item.tall { grid-row: span 1 !important; }

  /* --- CTA section buttons stack --- */
  div[style*="display:flex;gap:16px;justify-content:center"] {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Always show gallery overlay on touch (no hover) */
  .gallery-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
  .real-item-label { opacity: 1; }
}