/* ================================
   AD Charpente 22 — Styles
   ================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Tokens */
:root {
  --brown-900: #3d2816;
  --brown-800: #4a3420;
  --brown-700: #5d3f2a;
  --brown-600: #6b4423;
  --brown-500: #8b6b4a;
  --brown-400: #a88660;
  --brown-300: #c4a57a;
  --brown-200: #e0c9a6;
  --cream-100: #faf6f0;
  --cream-200: #f2ead9;
  --cream-300: #e8dcc4;
  --accent: #c87941;
  --accent-dark: #a85d28;
  --green: #5a7a4a;
  --text: #2a1f14;
  --text-light: #6b5a47;
  --bg: #ffffff;
  --border: #e6dcc9;
  --shadow-sm: 0 2px 8px rgba(61, 40, 22, .06);
  --shadow-md: 0 8px 24px rgba(61, 40, 22, .1);
  --shadow-lg: 0 20px 60px rgba(61, 40, 22, .15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* Typography */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; color: var(--brown-900); line-height: 1.2; }
.accent { color: var(--accent); }

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; text-align: center;
}
.btn--primary { background: var(--brown-600); color: white; }
.btn--primary:hover { background: var(--brown-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--brown-600); border-color: var(--brown-600); }
.btn--outline:hover { background: var(--brown-600); color: white; }
.btn--ghost { background: transparent; color: var(--brown-700); padding: 14px 8px; }
.btn--ghost:hover { color: var(--accent); }
.btn--small { padding: 10px 20px; font-size: 14px; }

/* Top bar */
.top-bar { background: var(--brown-900); color: var(--cream-200); font-size: 13px; padding: 8px 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.top-bar__info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar__info span { display: inline-flex; align-items: center; gap: 6px; opacity: .9; }
.top-bar__actions { display: flex; gap: 20px; align-items: center; }
.top-bar__phone { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; }
.rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #ffb938; letter-spacing: 1px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--brown-800); }
.logo__icon { color: var(--brown-600); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--brown-900); }
.logo__sub { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.logo--light { color: var(--cream-200); }
.logo--light .logo__name { color: white; }
.logo--light .logo__sub { color: var(--brown-300); }
.logo--light .logo__icon { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; gap: 4px; }
.nav__link { display: block; padding: 10px 16px; font-weight: 500; font-size: 15px; color: var(--text); border-radius: var(--radius); position: relative; }
.nav__link:hover { color: var(--brown-600); }
.nav__link--active { color: var(--brown-600); }
.nav__link--active::after { content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 2px; background: var(--accent); border-radius: 2px; }

.burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--brown-800); transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 80px 0 60px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(61,40,22,.85) 0%, rgba(107,68,35,.65) 50%, rgba(61,40,22,.6) 100%),
    url('../images/photo3.jpg') center/cover no-repeat,
    linear-gradient(180deg, #8b6b4a 0%, #5d3f2a 100%);
  z-index: -1;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,121,65,.2), transparent 50%);
}
.hero__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; color: white; position: relative; }
.hero__tag { display: inline-block; padding: 8px 16px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; font-size: 13px; font-weight: 500; backdrop-filter: blur(10px); margin-bottom: 24px; }
.hero__title { font-size: clamp(36px, 6vw, 64px); color: white; margin-bottom: 24px; }
.hero__text { font-size: 18px; line-height: 1.7; max-width: 560px; margin-bottom: 36px; color: rgba(255,255,255,.92); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__actions .btn--primary { background: var(--accent); }
.hero__actions .btn--primary:hover { background: var(--accent-dark); }
.hero__actions .btn--ghost { color: white; }
.hero__trust { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2); }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: 'Playfair Display', serif; font-size: 32px; color: white; }
.trust-item span { font-size: 13px; color: rgba(255,255,255,.75); }

.hero__visual { position: relative; height: 480px; display: none; }
.hero__card {
  position: absolute; background: white; padding: 16px 20px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  color: var(--brown-900); animation: float 6s ease-in-out infinite;
}
.hero__card svg { color: var(--accent); flex-shrink: 0; }
.hero__card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.hero__card span { font-size: 12px; color: var(--text-light); }
.hero__card--1 { top: 10%; left: -10%; animation-delay: 0s; }
.hero__card--2 { bottom: 15%; right: -5%; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* Sections */
.section { padding: 100px 0; }
.section--cream { background: var(--cream-100); }
.section--dark { background: var(--brown-900); color: var(--cream-200); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: white; }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.section__title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section__lead { font-size: 17px; color: var(--text-light); line-height: 1.7; }
.section__head--light .section__lead { color: var(--brown-200); }

.center { text-align: center; margin-top: 48px; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; padding: 40px 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--brown-300); }
.service-card--featured { background: linear-gradient(135deg, var(--cream-100), white); border-color: var(--brown-300); }
.service-card__badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: white; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.service-card__icon { width: 72px; height: 72px; background: var(--cream-200); border-radius: var(--radius); display: grid; place-items: center; color: var(--brown-600); margin-bottom: 24px; }
.service-card--featured .service-card__icon { background: var(--accent); color: white; }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--text-light); margin-bottom: 20px; flex-grow: 0; }
.service-card__list { margin-bottom: 28px; flex-grow: 1; }
.service-card__list li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; border-bottom: 1px dashed var(--border); }
.service-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.service-card__list li:last-child { border: none; }
.service-card__link { color: var(--brown-600); font-weight: 600; font-size: 14px; display: inline-block; transition: var(--transition); }
.service-card__link:hover { color: var(--accent); transform: translateX(4px); }
.service-card--photo { padding: 0; overflow: hidden; }
.service-card--photo .service-card__photo { height: 220px; background-size: cover; background-position: center; transition: transform .6s ease; }
.service-card--photo:hover .service-card__photo { transform: scale(1.05); }
.service-card--photo .service-card__body { padding: 28px 28px 32px; }
.service-card--photo h3 { font-size: 22px; margin-bottom: 10px; }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); height: 180px; }
.photo-strip__item { background-size: cover; background-position: center; filter: grayscale(20%) brightness(.9); transition: var(--transition); position: relative; overflow: hidden; }
.photo-strip__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(61,40,22,.3)); }
.photo-strip__item:hover { filter: grayscale(0) brightness(1); transform: scale(1.02); z-index: 2; }
@media (max-width: 720px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: 120px; }
  .photo-strip__item:nth-child(n+4) { display: none; }
}

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process__step { position: relative; padding: 32px 24px; background: rgba(255,255,255,.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.1); transition: var(--transition); }
.process__step:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.process__num { display: block; font-family: 'Playfair Display', serif; font-size: 48px; color: var(--accent); margin-bottom: 12px; font-weight: 700; }
.process__step h4 { font-size: 20px; margin-bottom: 12px; color: white; }
.process__step p { color: var(--brown-200); font-size: 14px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 240px); gap: 16px; margin-bottom: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: var(--transition); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  position: relative; transition: transform .6s ease;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.06); }
.gallery-item__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.6)); }
.gallery-item__label { position: absolute; bottom: 20px; left: 20px; right: 20px; color: white; font-weight: 600; z-index: 1; font-size: 15px; }

/* Testimonials */
.google-rating { display: inline-flex; align-items: center; gap: 8px; background: white; padding: 12px 24px; border-radius: 100px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.google-rating__stars { color: #ffb938; font-size: 20px; letter-spacing: 2px; }
.google-rating strong { font-size: 22px; font-family: 'Playfair Display', serif; }
.google-rating span { color: var(--text-light); font-size: 14px; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { background: white; padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); position: relative; }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--cream-300); line-height: 1; }
.testimonial__stars { color: #ffb938; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial__text { color: var(--text); line-height: 1.7; margin-bottom: 24px; font-size: 15px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brown-600); color: white; display: grid; place-items: center; font-weight: 600; font-size: 14px; }
.testimonial__author strong { display: block; font-size: 14px; color: var(--brown-900); }
.testimonial__author span { font-size: 12px; color: var(--text-light); }

/* CTA */
.cta { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: white; padding: 80px 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: rgba(255,255,255,.1); border-radius: 50%; }
.cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; position: relative; }
.cta h2 { color: white; font-size: 36px; margin-bottom: 8px; }
.cta p { font-size: 16px; opacity: .95; }
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta__actions .btn--primary { background: white; color: var(--accent-dark); }
.cta__actions .btn--primary:hover { background: var(--cream-100); }
.cta__actions .btn--outline { color: white; border-color: white; }
.cta__actions .btn--outline:hover { background: white; color: var(--accent-dark); }

/* Footer */
.footer { background: var(--brown-900); color: var(--brown-200); padding: 80px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__brand p { margin-top: 20px; color: var(--brown-300); font-size: 14px; line-height: 1.7; }
.footer__col h5 { color: white; font-size: 15px; margin-bottom: 20px; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer__col ul li { margin-bottom: 10px; font-size: 14px; }
.footer__col a { color: var(--brown-200); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; font-size: 13px; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: var(--brown-300); }
.footer__bottom-inner a { color: var(--brown-300); margin-left: 24px; }
.footer__bottom-inner a:hover { color: var(--accent); }

/* Floating */
.floating-call {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: var(--accent); color: white; border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); z-index: 99;
  transition: var(--transition); animation: pulse 2s infinite;
}
.floating-call:hover { background: var(--accent-dark); transform: scale(1.1); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,121,65,.7), var(--shadow-lg); } 50% { box-shadow: 0 0 0 16px rgba(200,121,65,0), var(--shadow-lg); } }

/* Page header (inner pages) */
.page-header { background: linear-gradient(135deg, rgba(61,40,22,.9), rgba(93,63,42,.85)), url('../images/photo3.jpg') center/cover no-repeat; color: white; padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.02) 40px 80px); }
.page-header__tag { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,.15); border-radius: 100px; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.page-header h1 { color: white; font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-header p { font-size: 17px; max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.85); }
.breadcrumb { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: var(--accent); }

/* Service details (services page) */
.service-detail { padding: 100px 0; border-bottom: 1px solid var(--border); }
.service-detail:nth-child(even) { background: var(--cream-100); }
.service-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-detail__inner--reverse { direction: rtl; }
.service-detail__inner--reverse > * { direction: ltr; }
.service-detail h2 { font-size: 38px; margin-bottom: 16px; }
.service-detail__subtitle { color: var(--accent); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 600; margin-bottom: 12px; display: block; }
.service-detail p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.service-detail__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 28px 0; }
.service-detail__features li { padding-left: 28px; position: relative; font-size: 14px; color: var(--text); }
.service-detail__features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; width: 20px; height: 20px; border-radius: 50%; background: var(--cream-200); display: grid; place-items: center; font-size: 12px; }
.service-detail__img { height: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.service-detail__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(61,40,22,.3)); }

/* Realisations page */
.filter-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn { padding: 10px 24px; border-radius: 100px; border: 2px solid var(--border); background: white; color: var(--text); font-weight: 500; font-size: 14px; transition: var(--transition); }
.filter-btn:hover { border-color: var(--brown-500); color: var(--brown-600); }
.filter-btn.active { background: var(--brown-600); color: white; border-color: var(--brown-600); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card__img { height: 260px; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; transition: transform .6s ease; }
.project-card:hover .project-card__img { transform: scale(1.04); }
.project-card__cat { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--brown-700); }
.project-card__body { padding: 24px; }
.project-card__body h3 { font-size: 20px; margin-bottom: 8px; }
.project-card__body p { color: var(--text-light); font-size: 14px; margin-bottom: 12px; }
.project-card__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); padding-top: 12px; border-top: 1px solid var(--border); }

/* About page */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 100px 0; }
.about-hero__img { height: 520px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--brown-500), var(--brown-800)); box-shadow: var(--shadow-lg); position: relative; }
.about-hero__img::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 180px; height: 180px; background: var(--accent); border-radius: var(--radius-lg); z-index: -1; }
.about-hero h2 { font-size: 42px; margin-bottom: 20px; }
.about-hero p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.value { text-align: center; padding: 32px 24px; }
.value__icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--cream-200); color: var(--brown-600); border-radius: 50%; display: grid; place-items: center; }
.value h4 { font-size: 20px; margin-bottom: 12px; }
.value p { color: var(--text-light); font-size: 14px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 60px 0; background: var(--brown-900); color: white; border-radius: var(--radius-lg); text-align: center; margin: 60px 0; }
.stat__num { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--accent); font-weight: 700; line-height: 1; }
.stat__label { color: var(--brown-200); font-size: 14px; margin-top: 8px; display: block; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; margin: 60px 0; }
.contact-info { background: var(--brown-900); color: white; padding: 48px 36px; border-radius: var(--radius-lg); }
.contact-info h3 { color: white; font-size: 28px; margin-bottom: 12px; }
.contact-info p { color: var(--brown-200); margin-bottom: 32px; font-size: 15px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.contact-item:first-of-type { border-top: none; }
.contact-item__icon { width: 44px; height: 44px; background: var(--accent); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.contact-item strong { display: block; color: white; font-size: 14px; margin-bottom: 4px; }
.contact-item span, .contact-item a { color: var(--brown-200); font-size: 14px; }
.contact-item a:hover { color: var(--accent); }

.contact-form { background: white; padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 28px; margin-bottom: 8px; }
.contact-form > p { color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--brown-800); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; transition: var(--transition); background: var(--cream-100);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brown-500); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; font-size: 13px; color: var(--text-light); }
.form-check input { margin-top: 3px; flex-shrink: 0; }
.form-status { padding: 14px 18px; border-radius: var(--radius); margin-top: 16px; font-size: 14px; display: none; }
.form-status.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #81c784; }
.form-status.error { display: block; background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

.map-wrap { height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { background: white; border-radius: var(--radius); margin-bottom: 12px; border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.faq__item.open { border-color: var(--brown-400); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; text-align: left; font-weight: 600; color: var(--brown-900); font-size: 16px; }
.faq__q::after { content: '+'; font-size: 24px; color: var(--accent); transition: var(--transition); }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 28px; color: var(--text-light); line-height: 1.7; }
.faq__item.open .faq__a { max-height: 300px; padding: 0 28px 24px; }

/* Animations on scroll */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .services, .testimonials, .projects-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-hero, .service-detail__inner, .contact-grid { grid-template-columns: 1fr; }
  .service-detail__inner--reverse { direction: ltr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-item--tall, .gallery-item--wide { grid-column: auto; grid-row: auto; }
}

@media (max-width: 720px) {
  .top-bar__info { display: none; }
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px; box-shadow: var(--shadow-md); gap: 16px; }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; width: 100%; }
  .nav__link { padding: 12px 0; }
  .burger { display: flex; }
  .services, .testimonials, .projects-grid, .process, .values { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero__trust { gap: 20px; flex-wrap: wrap; }
  .trust-item strong { font-size: 24px; }
  .cta__inner { flex-direction: column; text-align: center; }
  .contact-form, .contact-info { padding: 28px 20px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__bottom-inner a { margin: 0 12px; }
}
