/* ============================================================
   ATELIER PANDOLFI — style.css
   Version  : 2.0
   Auteur   : La Clinique du Web
   Palette  : Vert enseigne #226c39 · Crème #F7F3EE · Sombre #1A1A14
   ============================================================ */

/* ── 0. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --green:        #226c39;
  --green-dark:   #1a5229;
  --green-light:  #2e8a49;
  --green-muted:  rgba(34, 108, 57, 0.12);
  --green-border: rgba(34, 108, 57, 0.3);

  /* Neutrals */
  --cream:        #F7F3EE;
  --cream-dark:   #EDE8E0;
  --dark:         #1A1A14;
  --dark-mid:     #2C2C22;
  --mid:          #5C5C4E;
  --light:        #9A9A8C;

  /* Borders */
  --border-light: rgba(34, 108, 57, 0.18);
  --border-dark:  rgba(34, 108, 57, 0.35);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-v: 110px;
  --section-h: 80px;
  --container: 1320px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* ── 1. CONTAINERS ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
}

.section-pad {
  padding: var(--section-v) 0;
}

/* ── 2. TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.eyebrow.light { color: rgba(247,243,238,0.6); }
.eyebrow.light::before { background: rgba(247,243,238,0.4); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
}

.display-title {
  font-size: clamp(52px, 6.5vw, 88px);
  color: var(--cream);
}
.display-title em { font-style: italic; color: var(--green-light); }

.section-title {
  font-size: clamp(34px, 3.8vw, 52px);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: #7ec897; }

.body-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.88;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--green);
  margin-bottom: 24px;
  opacity: 0.5;
}

/* ── 3. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: white;
  padding: 15px 36px;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--green);
  padding: 14px 34px;
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247,243,238,0.4);
  padding: 14px 34px;
}
.btn-outline-light:hover {
  background: rgba(247,243,238,0.1);
  border-color: var(--cream);
}

.btn-ghost {
  background: none;
  color: var(--green);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.btn-ghost:hover { color: var(--green-dark); }
.btn-ghost svg { transition: transform 0.25s var(--ease); }
.btn-ghost:hover svg { transform: translateX(5px); }

.btn-ghost-light {
  color: rgba(247,243,238,0.65);
}
.btn-ghost-light:hover { color: var(--cream); }

/* ── 4. NAV ─────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-h);
  height: 72px;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: height 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#site-nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 24px rgba(34,108,57,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: height 0.3s;
}
#site-nav.scrolled .nav-logo img { height: 36px; }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark);
}
.nav-logo-text span { color: var(--green); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 8px 18px;
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--green); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 24px;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding: 24px var(--section-h) 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--green); }
.nav-drawer .btn-primary { margin-top: 16px; justify-content: center; }

/* ── 5. HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-mid);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transition: opacity 0.8s;
}

/* dark gradient overlay — bottom left for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(26,26,20,0.92) 0%, rgba(26,26,20,0.5) 55%, rgba(26,26,20,0.1) 100%),
    linear-gradient(to top, rgba(26,26,20,0.6) 0%, transparent 40%);
}

/* decorative grid — right side */
.hero-grid-deco {
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(34,108,57,0.06) 60px, rgba(34,108,57,0.06) 61px),
    repeating-linear-gradient(0deg,  transparent, transparent 60px, rgba(34,108,57,0.04) 60px, rgba(34,108,57,0.04) 61px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--section-h) 90px;
  max-width: 680px;
}

.hero-content .display-title { margin-bottom: 22px; }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(247,243,238,0.6);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-year {
  position: absolute;
  right: var(--section-h);
  bottom: 90px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(34,108,57,0.5);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(34,108,57,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── 6. TICKER ───────────────────────────────────────────────── */
#ticker {
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 32s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(34,108,57,0.7);
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-dot {
  width: 3px;
  height: 3px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 7. ABOUT ────────────────────────────────────────────────── */
#about {
  padding: var(--section-v) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }

/* Decorative offset border */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--border-dark);
  z-index: -1;
}

.about-stat-box {
  position: absolute;
  right: -32px;
  bottom: 48px;
  width: 42%;
  aspect-ratio: 1;
  background: var(--dark);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  z-index: 2;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--green-light);
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.45);
  text-align: center;
  line-height: 1.5;
}

.about-text .body-text { margin-bottom: 14px; }
.about-text .btn-primary { margin-top: 32px; }

/* ── 8. SERVICES ─────────────────────────────────────────────── */
#services {
  background: var(--dark);
  padding: var(--section-v) 0;
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(34,108,57,0.15);
  gap: 1px;
  background: rgba(34,108,57,0.12);
}

.svc-card {
  background: var(--dark);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.svc-card:hover { background: #23231A; }

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px;
  width: 0; height: 1px;
  background: var(--green);
  transition: width 0.4s var(--ease);
}
.svc-card:hover::after { width: calc(100% - 80px); }

.svc-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(34,108,57,0.1);
  position: absolute;
  top: 14px; right: 28px;
  line-height: 1;
  user-select: none;
}
.svc-icon {
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.55;
  margin-bottom: 26px;
}
.svc-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,243,238,0.42);
  line-height: 1.75;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.svc-card:hover .svc-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── 9. GALLERY / PORTFOLIO ──────────────────────────────────── */
#portfolio {
  padding: var(--section-v) 0;
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

/* Masonry-like grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.portfolio-item { position: relative; overflow: hidden; }
.portfolio-item:first-child { grid-row: span 2; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,20,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.p-cat {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 5px;
}
.p-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
}

/* ── 10. INSTAGRAM ───────────────────────────────────────────── */
#instagram {
  background: var(--cream-dark);
  padding: var(--section-v) 0;
}
.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.insta-handle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
}
.insta-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* Elfsight container — override their default styles */
.elfsight-wrap { width: 100%; }
.elfsight-app  { width: 100%; }

.instagram-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── 11. TEAM ────────────────────────────────────────────────── */
#team {
  padding: var(--section-v) 0;
}
.team-header { text-align: center; margin-bottom: 72px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  max-width: 820px;
  margin: 0 auto;
}
.team-card { text-align: center; }

.team-portrait {
  width: 170px;
  height: 220px;
  position: relative;
  margin: 0 auto 28px;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Offset shadow frame */
.team-portrait::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: -10px; bottom: -10px;
  border: 1px solid var(--border-dark);
  z-index: -1;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 300px;
  margin: 0 auto;
}

/* ── 12. TESTIMONIALS / AVIS GOOGLE ──────────────────────────── */
#reviews {
  background: var(--dark);
  padding: var(--section-v) 0;
}
.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-elfsight { /* Elfsight Google reviews widget */ width: 100%; }

/* ── 13. CONTACT STRIP ───────────────────────────────────────── */
#contact-strip {
  background: var(--green-dark);
  padding: 90px 0;
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-strip-left .section-title { margin-bottom: 10px; }
.contact-strip-sub {
  font-size: 13px;
  color: rgba(247,243,238,0.55);
  font-weight: 300;
}
.contact-details {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.contact-item h6 {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.45);
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-item a,
.contact-item p {
  font-size: 14px;
  color: rgba(247,243,238,0.75);
  font-weight: 300;
  line-height: 1.7;
  display: block;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--cream); }

/* ── 14. FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: #0F0F0C;
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(34,108,57,0.15);
  margin-bottom: 24px;
}
.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(247,243,238,0.7);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,243,238,0.35);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h6 {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,243,238,0.4);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--green-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 11px;
  color: rgba(247,243,238,0.2);
  letter-spacing: 0.04em;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--green-light); }

/* ── 15. UTILS ───────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 16. ANIMATIONS (JS adds .reveal / .revealed) ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ── 17. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root {
    --section-h: 56px;
  }
  .about-grid    { gap: 64px; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root {
    --section-v: 80px;
    --section-h: 40px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px;
  }
  .portfolio-item:first-child { grid-row: span 2; }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root {
    --section-v: 64px;
    --section-h: 24px;
  }

  /* Nav */
  .nav-menu,
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  #hero { min-height: 100svh; align-items: center; }
  .hero-content { padding: 100px 24px 80px; max-width: 100%; }
  .hero-year { display: none; }
  .hero-grid-deco { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 440px; margin: 0 auto; }
  .about-stat-box { right: -12px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-link { opacity: 1; transform: none; }

  /* Portfolio */
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .portfolio-item:first-child { grid-row: span 2; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 48px; max-width: 360px; }

  /* Contact strip */
  .contact-details { flex-direction: column; gap: 28px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Instagram header */
  .instagram-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .portfolio-item { height: 260px; }
  .portfolio-item:first-child { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── 18. PRINT ───────────────────────────────────────────────── */
@media print {
  #site-nav, #ticker, .hero-scroll, #instagram, #reviews { display: none !important; }
  body { background: white; color: black; }
}

/* ── 19. FOOTER SOCIAL LINKS ─────────────────────────────────── */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(247,243,238,0.35);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--green-light); }
.footer-social svg { flex-shrink: 0; }

/* ── 20. CONTACT STRIP — horaires ───────────────────────────── */
.contact-item p {
  font-size: 14px;
  color: rgba(247,243,238,0.75);
  font-weight: 300;
  line-height: 1.7;
  display: block;
}

/* ── 21. PARTENAIRES — grille logos ─────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border-light);
  margin-bottom: 8px;
}
.partner-card {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  transition: background 0.25s var(--ease);
  min-height: 110px;
}
.partner-card:hover { background: var(--cream); }
.partner-card img {
  max-width: 140px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 900px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-card { padding: 20px 16px; min-height: 88px; }
}
