/* serrurier-ixelles.be — vert et blanc uniquement */

:root {
  --green-900: #1b3a2b;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-300: #95d5b2;
  --green-100: #d8f3dc;
  --green-050: #eef7f0;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--green-900);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Metal', 'EB Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--green-900);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; margin-top: 2.2rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.7rem; margin-top: 1.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; margin-top: 1.2rem; }

p {
  margin-bottom: 1.1rem;
}

a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: var(--green-300);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

a:hover {
  color: var(--green-900);
  text-decoration-color: var(--green-700);
}

ul, ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--green-100);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand {
  font-family: 'Metal', serif;
  font-size: 1.8rem;
  color: var(--green-900);
  text-decoration: none;
  letter-spacing: 1px;
}

.brand:hover {
  color: var(--green-700);
}

.brand-tag {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  color: var(--green-700);
  font-style: italic;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--green-900);
  font-size: 1rem;
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
  border-bottom-color: var(--green-700);
  color: var(--green-700);
}

.header-cta {
  background: var(--green-700);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.header-cta:hover {
  background: var(--green-900);
  color: var(--white);
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--green-700);
  color: var(--green-700);
  padding: 0.45rem;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--green-050);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle .icon-close { display: none; }
body.nav-open .menu-toggle .icon-open { display: none; }
body.nav-open .menu-toggle .icon-close { display: block; }

/* Mobile drawer overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 43, 0.55);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.25s;
}

body.nav-open .nav-overlay {
  display: block;
  opacity: 1;
}

/* Top urgency bar */
.urgency-bar {
  background: var(--green-900);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.urgency-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration-color: var(--green-300);
}

.urgency-bar a:hover {
  color: var(--green-100);
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 15% 20%, var(--green-100) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, var(--green-100) 0%, transparent 45%),
    linear-gradient(135deg, var(--green-050) 0%, var(--white) 100%);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  border-bottom: 4px solid var(--green-700);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--green-700);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--green-300);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: 1.3rem;
  color: var(--green-700);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: 2px solid var(--green-700);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-700);
}

.btn-secondary:hover {
  background: var(--green-100);
  color: var(--green-900);
}

/* Main content */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.95rem;
  color: var(--green-700);
}

.breadcrumbs a {
  color: var(--green-700);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Section heading */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green-500);
  margin: 1rem auto 0;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--white);
  border: 2px solid var(--green-100);
  padding: 1.8rem 1.6rem;
  border-radius: 6px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--green-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 58, 43, 0.08);
}

.card h3 {
  margin-top: 0;
  color: var(--green-900);
}

.card p {
  flex-grow: 1;
  color: var(--green-900);
}

.card-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  border-bottom: 1px solid var(--green-300);
  padding-bottom: 2px;
  align-self: flex-start;
}

.card-link:hover {
  color: var(--green-900);
  border-bottom-color: var(--green-700);
}

.card-link svg.icon-arrow {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: -1px;
  transition: transform 0.2s;
}

.card:hover .card-link svg.icon-arrow {
  transform: translateX(3px);
}

/* Inline icons */
.icon {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  flex-shrink: 0;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-xl {
  width: 44px;
  height: 44px;
  color: var(--green-700);
}

.icon-feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-050);
  margin-bottom: 1rem;
  color: var(--green-700);
}

.icon-feature svg {
  width: 32px;
  height: 32px;
}

.card .icon-feature {
  margin-bottom: 0.8rem;
}

/* Contact icon row */
.contact-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 0.6rem;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

/* Trust strip */
.trust-strip {
  background: var(--green-900);
  color: var(--white);
  padding: 2.5rem 1.5rem;
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--green-300);
  margin-bottom: 0.6rem;
}

.trust-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.trust-item p {
  color: var(--green-100);
  font-size: 0.95rem;
  margin: 0;
}

.urgency-bar svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
}

.header-cta svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 5px;
}

/* Process steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.steps li {
  position: relative;
  padding: 2rem 1.4rem 1.4rem;
  background: var(--white);
  border: 2px solid var(--green-100);
  border-radius: 6px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 1.4rem;
  width: 36px;
  height: 36px;
  background: var(--green-700);
  color: var(--white);
  font-family: 'Metal', serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.steps li h4 {
  margin-top: 0;
  font-size: 1.1rem;
}

.steps li p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* Info box / callout */
.callout {
  background: var(--green-050);
  border-left: 4px solid var(--green-700);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}

.callout strong {
  color: var(--green-900);
}

.callout-urgent {
  background: var(--green-100);
  border-left-color: var(--green-900);
  text-align: center;
}

.callout-urgent h3 {
  margin-top: 0;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 2.5rem 0;
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Pricing / numbers grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--green-050);
  border-radius: 6px;
}

.stat-number {
  font-family: 'Metal', serif;
  font-size: 2.8rem;
  color: var(--green-700);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--green-900);
}

/* List with checkmark icons */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.7rem;
}

.checklist li > svg.icon-check {
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  color: var(--green-700);
  flex-shrink: 0;
}

/* Service list inside articles */
.service-list, .guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.service-list li, .guide-list li {
  margin: 0;
}

.service-list a, .guide-list a {
  display: block;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 2px solid var(--green-100);
  border-radius: 4px;
  text-decoration: none;
  color: var(--green-900);
  font-weight: 600;
  transition: all 0.2s;
}

.service-list a:hover, .guide-list a:hover {
  border-color: var(--green-700);
  background: var(--green-050);
  color: var(--green-900);
}

/* Contact block */
.contact-block {
  background: var(--green-050);
  padding: 2.5rem;
  border-radius: 6px;
  border: 2px solid var(--green-100);
  text-align: center;
  margin: 2rem 0;
}

.contact-block h3 {
  margin-top: 0;
}

.contact-item {
  display: block;
  margin: 1rem 0;
  font-size: 1.15rem;
}

.contact-item strong {
  display: block;
  font-family: 'Metal', serif;
  color: var(--green-700);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-item a {
  color: var(--green-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.contact-item .contact-value {
  display: block;
  margin-top: 0.3rem;
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.4;
}

.contact-item a:hover {
  color: var(--green-700);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--green-100);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Metal', serif;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--green-100);
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-col p {
  color: var(--green-100);
  font-size: 0.98rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--green-700);
  text-align: center;
  color: var(--green-100);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--green-100);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
}

table th, table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--green-100);
}

table th {
  background: var(--green-050);
  font-family: 'Metal', serif;
  font-weight: 400;
  color: var(--green-900);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

table tr:hover {
  background: var(--green-050);
}

/* Quote */
blockquote {
  border-left: 4px solid var(--green-500);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--green-700);
}

/* Hero image grid (homepage) */
.hero-visual {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(27, 58, 43, 0.18);
  display: block;
}

.hero-visual .span-2-rows {
  grid-row: span 2;
}

@media (max-width: 760px) {
  .hero-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
  .hero-visual .span-2-rows { grid-row: span 2; }
  .hero-visual .hide-mobile { display: none; }
}

/* Service feature with image */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.service-feature.reverse {
  direction: rtl;
}

.service-feature.reverse > * {
  direction: ltr;
}

.service-feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(27, 58, 43, 0.15);
}

@media (max-width: 760px) {
  .service-feature, .service-feature.reverse { direction: ltr; grid-template-columns: 1fr; gap: 1.5rem; }
  .service-feature img { height: 240px; }
}

/* Responsive */
@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
    box-shadow: -4px 0 20px rgba(27, 58, 43, 0.15);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--green-100);
    border-radius: 0;
  }
  .main-nav a:hover, .main-nav a.active {
    border-bottom: 1px solid var(--green-700);
    color: var(--green-700);
    background: transparent;
  }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .header-inner { gap: 0.5rem; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .hero { padding: 4rem 1.2rem 3rem; }
  .container, .container-narrow { padding: 2rem 1.2rem; }
  .contact-block { padding: 1.8rem 1.2rem; }
  h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  table { font-size: 0.92rem; }
  table th, table td { padding: 0.6rem 0.5rem; }
  .urgency-bar { font-size: 0.85rem; padding: 0.45rem 0.8rem; }
}

@media (max-width: 520px) {
  .brand { font-size: 1.4rem; }
  .brand-tag { font-size: 0.72rem; }
  .footer-inner { gap: 1.8rem; }
  .stat-number { font-size: 2.2rem; }
  .card-grid { gap: 1rem; }
  .card { padding: 1.4rem 1.2rem; }
}
