:root {
  --yellow: #ffd216;
  --yellow-strong: #ffc400;
  --black: #0b0d0e;
  --black-soft: #15191c;
  --gray-900: #202529;
  --gray-700: #4c555c;
  --gray-500: #758089;
  --gray-200: #e4e7e9;
  --gray-100: #f4f5f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  --radius: 16px;
  --header-height: 90px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--yellow); color: var(--black); }

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 9999;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 16px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-soft { background: var(--gray-100); }
.section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  margin-top: 16px;
  background: var(--yellow);
}
.section-title.center { text-align: center; }
.section-title.center::after { margin-inline: auto; }
.section-lead {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--gray-700);
  font-size: 1.1rem;
}
.section-dark .section-lead { color: #ccd1d4; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #9b7900;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--yellow); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .025em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: #ffe25a; }
.btn-outline { border-color: rgba(255,255,255,.72); color: var(--white); background: rgba(0,0,0,.2); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-900); }
.btn-small { min-height: 40px; padding: 8px 16px; font-size: .8rem; }
.icon { width: 21px; height: 21px; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(9, 11, 12, .97);
  color: var(--white);
  box-shadow: 0 7px 25px rgba(0,0,0,.18);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 292px;
  height: var(--header-height);
  padding: 0;
  background: transparent;
  overflow: visible;
}
.brand img {
  width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
}
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 28px; padding: 0; margin: 0; list-style: none; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .88rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 3px;
  background: var(--yellow);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.site-nav a.active { color: var(--yellow); }
.header-phone { flex: 0 0 auto; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--white);
}
.menu-toggle span { display: block; width: 28px; height: 3px; margin: 5px auto; background: currentColor; transition: .25s; }

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  transition: opacity .8s ease, transform 5s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,10,.84) 0%, rgba(5,8,10,.58) 36%, rgba(5,8,10,.16) 68%, rgba(5,8,10,.10) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  align-items: center;
  padding: 80px 0 90px;
}
.hero-copy { max-width: 720px; }
.hero-title {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-title strong { display: block; color: var(--yellow); }
.hero-title::after { content: ""; display: block; width: 84px; height: 6px; margin-top: 24px; background: var(--yellow); }
.hero-subtitle { max-width: 590px; margin: 20px 0 30px; font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 750; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-controls { position: absolute; z-index: 3; left: 50%; bottom: 24px; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-dot { width: 12px; height: 12px; padding: 0; border: 2px solid var(--white); border-radius: 50%; background: transparent; }
.hero-dot.active { background: var(--yellow); border-color: var(--yellow); }

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,10,.92), rgba(5,8,10,.45)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin: 0 0 14px; font-size: clamp(3rem, 7vw, 5.6rem); line-height: .95; text-transform: uppercase; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { max-width: 700px; margin: 0; font-size: 1.25rem; font-weight: 700; }
.breadcrumbs { margin-bottom: 20px; font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a { color: var(--yellow); }

.split { display: grid; grid-template-columns: 1fr 1.08fr; align-items: stretch; }
.split-copy { padding: 64px max(40px, calc((100vw - var(--container)) / 2)); padding-right: 54px; }
.split-media { min-height: 520px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: stretch; }
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 22px;
  align-items: start;
  align-content: start;
  padding: 4px 0;
}
.about-photo-card {
  width: 100%;
  margin: 0;
  padding: 4px;
  overflow: hidden;
  background: var(--white);
  border-left: 5px solid var(--yellow);
  box-shadow: var(--shadow);
  align-self: start;
}
.about-photo-card:nth-child(1) { margin-top: 24px; }
.about-photo-card:nth-child(2) { margin-top: 78px; }
.about-photo-card:nth-child(3) { margin-top: 12px; }
.about-photo-card:nth-child(4) { margin-top: 60px; }
.about-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-photo-card--portrait img,
.about-photo-card--landscape img { aspect-ratio: auto; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #d9dcdf; border: 1px solid #d9dcdf; }
.stat { padding: 30px 22px; background: var(--white); text-align: center; }
.stat strong { display: block; color: var(--black); font-size: clamp(2rem,4vw,3rem); line-height: 1; }
.stat span { color: var(--gray-700); font-size: .88rem; font-weight: 800; text-transform: uppercase; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #34393d; border: 1px solid #34393d; }
.service-card {
  position: relative;
  min-height: 290px;
  padding: 35px 26px;
  background: var(--black-soft);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: var(--yellow); transition: height .28s ease; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover::before { height: 100%; }
.service-card:hover { color: var(--black); }
.service-icon { width: 62px; height: 62px; margin: 0 auto 18px; color: var(--yellow); transition: color .25s; }
.service-card:hover .service-icon { color: var(--black); }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; font-size: 1.12rem; line-height: 1.15; text-transform: uppercase; }
.service-card p { margin: 0; color: #c9ced1; font-size: .93rem; }
.service-card:hover p { color: #232629; }
.service-card .card-link { display: inline-block; margin-top: 18px; font-size: .78rem; font-weight: 900; text-transform: uppercase; border-bottom: 2px solid currentColor; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-grid.single-project { grid-template-columns: minmax(320px, 960px); justify-content: center; }
.project-card img { cursor: pointer; }
.project-card { position: relative; min-height: 310px; overflow: hidden; background: var(--black); color: var(--white); box-shadow: var(--shadow); }
.project-card img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; transition: transform .45s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 58%); }
.project-card:hover img { transform: scale(1.05); }
.project-caption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.project-caption h3 { margin: 0 0 3px; text-transform: uppercase; }
.project-caption p { margin: 0; color: #d9dddf; font-size: .9rem; }
.project-card button { position: absolute; inset: 0; z-index: 3; width: 100%; border: 0; background: transparent; color: transparent; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--gray-200); background: var(--white); font-weight: 800; text-transform: uppercase; font-size: .78rem; }
.filter-btn.active, .filter-btn:hover { background: var(--yellow); border-color: var(--yellow); }
.project-card.hidden { display: none; }

.features-strip { background: var(--yellow); color: var(--black); }
.features-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.feature { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 26px 18px; border-right: 1px solid rgba(0,0,0,.2); }
.feature:last-child { border-right: 0; }
.feature svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.feature strong { display: block; line-height: 1.15; text-transform: uppercase; font-size: .9rem; }
.feature span { display: block; margin-top: 5px; font-size: .78rem; line-height: 1.35; }

.timeline { position: relative; max-width: 1020px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 252px; top: 12px; bottom: 12px; width: 3px; background: var(--yellow); }
.timeline-item { display: grid; grid-template-columns: 250px 1fr; gap: 56px; margin-bottom: 36px; align-items: start; }
.timeline-year {
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1.25;
  text-align: right;
  padding-right: 40px;
}
.timeline-content { position: relative; padding: 0 0 5px; }
.timeline-content::before { content: ""; position: absolute; left: -74px; top: 7px; width: 16px; height: 16px; border: 4px solid var(--black); border-radius: 50%; background: var(--yellow); }
.timeline-content h3 { margin: 0 0 7px; text-transform: uppercase; }
.timeline-content p { margin: 0; color: var(--gray-700); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 34px; border-top: 5px solid var(--yellow); background: var(--white); box-shadow: 0 12px 35px rgba(0,0,0,.08); }
.value-card h3 { margin: 0 0 10px; text-transform: uppercase; }
.value-card p { margin: 0; color: var(--gray-700); }

.services-list { position: relative; max-width: 960px; margin: 0 auto; }
.services-list::before { content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 6px; background: var(--yellow); }
.service-detail { position: relative; display: block; padding: 34px 0 34px 62px; border-bottom: 1px solid var(--gray-200); }
.service-detail:last-child { border-bottom: 0; }
.service-detail::before { content: ""; position: absolute; left: 0; top: 46px; width: 28px; height: 6px; background: var(--yellow); }
.service-detail h2 { margin: 0 0 15px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; text-transform: uppercase; }
.check-list { padding: 0; margin: 22px 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin: 9px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #a98200; font-weight: 950; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.contact-only { max-width: 820px; margin: 0 auto; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px; background: var(--gray-100); border-left: 4px solid var(--yellow); }
.contact-card svg { width: 36px; height: 36px; fill: none; stroke: var(--black); stroke-width: 1.8; }
.contact-card strong { display: block; text-transform: uppercase; }
.contact-card p { margin: 3px 0 0; color: var(--gray-700); }
.contact-form { padding: 36px; background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 800; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1px solid #cfd4d7;
  border-radius: 0;
  background: #fff;
  padding: 13px 14px;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #b28a00; box-shadow: 0 0 0 3px rgba(255,210,22,.25); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--gray-700); font-size: .85rem; }
.form-status { min-height: 24px; margin-top: 12px; font-weight: 800; }
.map-frame { width: 100%; height: 440px; border: 0; }

.cta-band { padding: 58px 0; background: var(--yellow); color: var(--black); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; text-transform: uppercase; }
.cta-band p { margin: 8px 0 0; font-weight: 700; }

.site-footer { background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.05fr 1.05fr .9fr .75fr .8fr; gap: 30px; padding: 54px 0 34px; }
.footer-brand { max-width: 300px; }
.footer-brand img { width: 230px; margin-bottom: 20px; }
.footer-title { margin: 0 0 15px; color: var(--yellow); font-size: .95rem; text-transform: uppercase; }
.footer-list { padding: 0; margin: 0; list-style: none; }
.footer-list li { margin: 9px 0; color: #d4d8da; }
.footer-list a:hover { color: var(--yellow); }
.footer-hours strong { color: var(--white); }
.phone-note { max-width: 230px; color: #bfc5c9 !important; font-size: .82rem; line-height: 1.45; }
.footer-reviews { min-width: 190px; }
.google-rating-card {
  display: block;
  max-width: 235px;
  padding: 16px 18px;
  border: 1px solid #34383b;
  border-radius: 10px;
  background: #121516;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.google-rating-card:hover { transform: translateY(-2px); border-color: var(--yellow); background: #171b1d; }
.google-rating-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.google-rating-head strong { color: var(--white); font-size: 1.15rem; }
.google-name { color: var(--white); font-size: 1rem; font-weight: 800; letter-spacing: .01em; }
.google-stars { margin: 7px 0 5px; color: var(--yellow); font-size: 1.28rem; line-height: 1; letter-spacing: 2px; }
.google-stars .star-muted { color: #74651d; }
.google-rating-card p { margin: 0 0 9px; color: #cbd0d3; font-size: .82rem; }
.google-review-link { color: var(--yellow); font-size: .78rem; font-weight: 850; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid #34383b; color: #aeb5ba; font-size: .82rem; }

.quote-tab {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 900;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 18px 11px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.mobile-call { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 2500; display: none; place-items: center; padding: 24px; background: rgba(0,0,0,.92); }
.lightbox.open { display: grid; }
.lightbox-content { position: relative; max-width: 1180px; width: 100%; }
.lightbox img { max-height: 78vh; width: 100%; object-fit: contain; background: #111; user-select: none; }
.lightbox-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; background: var(--white); color: var(--black); }
.lightbox-caption { font-weight: 800; }
.lightbox-counter { flex: 0 0 auto; font-weight: 900; color: var(--gray-700); }
.lightbox-close { position: absolute; right: 8px; top: -48px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--yellow); font-size: 1.6rem; z-index: 3; }
.lightbox-nav { position: absolute; top: 50%; z-index: 3; width: 52px; height: 68px; border: 0; border-radius: 8px; background: rgba(255,210,22,.94); color: var(--black); font-size: 2.5rem; font-weight: 900; transform: translateY(-50%); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-nav:hover { background: #ffe25a; }

.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 40px; text-transform: uppercase; }
.legal-content h3 { margin-top: 28px; }
.legal-content p, .legal-content li { color: var(--gray-700); }
.notice { padding: 18px 20px; border-left: 4px solid var(--yellow); background: var(--gray-100); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --header-height: 72px; }
  .brand { width: 250px; height: auto; }
  .site-nav ul { gap: 16px; }
  .site-nav a { font-size: .79rem; }
  .header-phone { display: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature:nth-child(3) { border-right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: grid;
    place-items: center;
    background: rgba(7,9,10,.98);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 12px; }
  .site-nav a { font-size: 1.15rem; padding: 8px; }
  .brand { width: 230px; height: auto; }
  .hero, .hero-content { min-height: 590px; }
  .hero::after { background: linear-gradient(90deg, rgba(5,8,10,.86), rgba(5,8,10,.34)); }
  .split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-copy { padding: 56px 28px; }
  .split-media { min-height: 380px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .services-list::before { left: 14px; }
  .service-detail { padding: 30px 0 30px 52px; }
  .service-detail::before { top: 42px; width: 22px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .quote-tab { display: none; }
  .mobile-call {
    position: fixed;
    z-index: 920;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 17px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 950;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 600px) {
  .section { padding: 62px 0; }
  .brand { width: 200px; height: auto; }
  .hero, .hero-content { min-height: 610px; }
  .hero-content { padding: 68px 0 88px; align-items: flex-end; }
  .hero-title { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .page-hero { min-height: 330px; }
  .page-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .services-grid, .project-grid, .features-grid, .stats, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.18); }
  .project-card, .project-card img { min-height: 270px; }
  .about-grid { gap: 36px; }
  .about-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: auto;
  }
  .about-photo-card { width: 100%; min-height: 0; margin-top: 0 !important; }
  .about-photo-card img { height: auto; min-height: 0; aspect-ratio: auto; object-fit: contain; }
  .timeline::before { left: 18px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 48px; }
  .timeline-year { text-align: left; }
  .timeline-content::before { left: -38px; }
  .contact-form { padding: 24px 18px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-call span { display: none; }
  .lightbox { padding: 16px 8px; }
  .lightbox-nav { width: 44px; height: 56px; font-size: 2rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-meta { padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Cookies / Google Analytics */
.cookie-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.cookie-settings-link:hover { color: var(--yellow); }
.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  pointer-events: none;
}
.cookie-consent.is-visible { display: block; pointer-events: auto; }
.cookie-consent__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #111518;
  color: #fff;
  border-left: 6px solid var(--yellow);
  box-shadow: 0 15px 45px rgba(0,0,0,.35);
}
.cookie-consent__copy { max-width: 760px; }
.cookie-consent__copy strong { display: block; margin-bottom: 7px; font-size: 1.05rem; }
.cookie-consent__copy p { margin: 0 0 7px; color: #e8e8e8; font-size: .93rem; line-height: 1.5; }
.cookie-consent__copy a { color: var(--yellow); font-weight: 800; text-decoration: underline; }
.cookie-consent__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-consent__actions .btn { white-space: nowrap; }
.cookie-consent__actions .cookie-refuse { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.cookie-consent__actions .cookie-refuse:hover { border-color: #fff; }
@media (max-width: 760px) {
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; }
  .cookie-consent__inner { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-consent__actions .btn { width: 100%; padding-left: 12px; padding-right: 12px; }
}

/* Mentions légales */
.legal-page-title {
  margin: 0 0 52px;
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.legal-content { max-width: 1120px; }
.legal-content h2 { margin: 38px 0 14px; font-size: 1.5rem; }
.legal-content h3 { margin: 26px 0 10px; font-size: 1.16rem; }
.legal-content p { margin: 0 0 18px; line-height: 1.7; }
.legal-content a { text-decoration: underline; text-underline-offset: 2px; }
