/*
Theme Name: GAE Couverture
Theme URI: https://gae-couverture.fr
Author: GAE Couverture
Author URI: https://gae-couverture.fr
Description: Thème WordPress premium sombre pour GAE Couverture, artisan couvreur à Capbreton. Zinc, tuile, ardoise, cuivre.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gae-couverture
Tags: one-column, custom-logo, custom-menu, featured-images, full-width-template
*/

/* ═══════════════════════════════════════════
   GAE COUVERTURE — PREMIUM DARK THEME
   ═══════════════════════════════════════════ */

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

:root {
  --bg-deep: #060606;
  --bg-primary: #0b0b0b;
  --bg-elevated: #111111;
  --bg-card: #151515;
  --bg-card-hover: #1a1a1a;
  --text-white: #f5f0e8;
  --text-light: #c8c0b4;
  --text-muted: #7a7368;
  --text-dim: #4a453e;
  --copper: #c49164;
  --copper-bright: #daa87a;
  --copper-deep: #a07548;
  --zinc-tone: #8a9198;
  --border-glass: rgba(255,255,255,0.05);
  --border-hover: rgba(255,255,255,0.12);
  --glow-copper: rgba(196,145,100,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--copper-deep) var(--bg-deep);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--copper-deep); border-radius: 3px; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* Cursor glow */
.cursor-glow {
  position: fixed; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,145,100,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear; will-change: transform;
}

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.6s var(--ease-out-expo);
}
.site-nav::after {
  content: ''; position: absolute; bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
  opacity: 0; transition: opacity 0.6s;
}
.site-nav.scrolled {
  padding: 16px 48px;
  background: rgba(6,6,6,0.85);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
}
.site-nav.scrolled::after { opacity: 1; }
.nav-logo img {
  height: 62px; width: auto;
  transition: all 0.5s var(--ease-out-expo);
  filter: drop-shadow(0 2px 20px rgba(196,145,100,0.1));
}
.site-nav.scrolled .nav-logo img { height: 46px; }

.nav-menu { display: flex; gap: 40px; align-items: center; list-style: none; }
.nav-menu li a {
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); position: relative; transition: color 0.4s;
}
.nav-menu li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--copper);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-menu li a:hover { color: var(--text-white); }
.nav-menu li a:hover::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 24px;
  border: 1px solid var(--border-hover);
  font-size: 12px; font-weight: 500; letter-spacing: 1px;
  color: var(--copper); transition: all 0.4s;
}
.nav-cta svg { width: 14px; height: 14px; }
.nav-cta:hover {
  background: var(--copper); color: var(--bg-deep); border-color: var(--copper);
}

.nav-burger {
  display: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 6px; z-index: 101;
  background: none; border: none;
}
.nav-burger span {
  width: 28px; height: 1px; background: var(--text-white);
  transition: all 0.4s var(--ease-out-expo); transform-origin: center; display: block;
}
.nav-burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6,6,6,0.97); backdrop-filter: blur(60px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 36px; font-weight: 300;
  color: var(--text-muted); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--text-white); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 80px clamp(48px, 8vw, 120px);
  padding-right: clamp(32px, 4vw, 80px);
  position: relative; z-index: 2;
}
.hero-logo-mark {
  width: 240px; max-width: 240px; margin-bottom: 48px;
  opacity: 0; animation: slideUp 1s 0.2s var(--ease-out-expo) forwards;
}
.hero-logo-mark img { width: 240px; max-width: none; height: auto; filter: drop-shadow(0 2px 30px rgba(196,145,100,0.15)); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--copper); margin-bottom: 28px;
  opacity: 0; animation: slideUp 1s 0.35s var(--ease-out-expo) forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--copper); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 300; line-height: 1.08; letter-spacing: -1px; margin-bottom: 32px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner {
  display: block; opacity: 0;
  animation: lineReveal 1.2s var(--ease-out-expo) forwards;
}
.hero-headline .line:nth-child(1) .line-inner { animation-delay: 0.4s; }
.hero-headline .line:nth-child(2) .line-inner { animation-delay: 0.55s; }
.hero-headline .line:nth-child(3) .line-inner { animation-delay: 0.7s; }
.hero-headline em { font-style: italic; font-weight: 300; color: var(--copper); }
.hero-desc {
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 300; line-height: 1.8;
  color: var(--text-light); max-width: 480px; margin-bottom: 48px;
  opacity: 0; animation: slideUp 1s 0.85s var(--ease-out-expo) forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: slideUp 1s 1s var(--ease-out-expo) forwards;
}
.hero-right { position: relative; overflow: hidden; }
.hero-image-wrap {
  position: absolute; inset: 0;
  opacity: 0; animation: heroImageReveal 1.6s 0.3s var(--ease-out-expo) forwards;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.75);
  transform: scale(1.08);
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg-deep) 0%, rgba(6,6,6,0.4) 30%, transparent 100%),
    linear-gradient(180deg, rgba(6,6,6,0.3) 0%, transparent 30%, rgba(6,6,6,0.6) 100%);
}
.hero-image-border {
  position: absolute; top: 80px; bottom: 80px; left: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--copper), transparent); opacity: 0.3;
}
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: clamp(48px, 8vw, 120px);
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: slideUp 1s 1.3s var(--ease-out-expo) forwards;
}
.hero-scroll-indicator .line {
  width: 48px; height: 1px; background: var(--text-dim);
  position: relative; overflow: hidden;
}
.hero-scroll-indicator .line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--copper);
  animation: scrollLine 2.5s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
}

/* ─── BUTTONS ─── */
.btn-copper {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 40px; background: var(--copper); color: var(--bg-deep);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.btn-copper::before {
  content: ''; position: absolute; inset: 0; background: var(--copper-bright);
  transform: translateX(-101%); transition: transform 0.5s var(--ease-out-expo);
}
.btn-copper:hover::before { transform: translateX(0); }
.btn-copper span, .btn-copper svg { position: relative; z-index: 1; }
.btn-copper svg { width: 16px; height: 16px; transition: transform 0.4s; }
.btn-copper:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 32px; background: transparent; color: var(--text-white);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border-hover); cursor: pointer; transition: all 0.4s;
}
.btn-ghost:hover {
  border-color: var(--copper); color: var(--copper); background: var(--glow-copper);
}

/* ─── SECTIONS COMMON ─── */
section.gae-section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.gae-container { max-width: 1300px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--copper);
  margin-bottom: 24px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--copper); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.12; letter-spacing: -0.5px;
}
.section-heading em { font-style: italic; color: var(--copper); }
.section-sub {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--text-light); max-width: 520px; margin-top: 20px;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: all 0.9s var(--ease-out-expo);
}
.reveal.vis { 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.3s; }

/* ─── SERVICES — BENTO ─── */
.services-section { background: var(--bg-primary); border-top: 1px solid var(--border-glass); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto; gap: 3px;
}
.bento-card {
  position: relative; background: var(--bg-elevated);
  padding: clamp(32px, 3.5vw, 52px);
  display: flex; flex-direction: column; overflow: hidden; cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
}
.bento-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, var(--glow-copper), transparent 60%);
  opacity: 0; transition: opacity 0.6s;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { background: var(--bg-card-hover); }
.bento-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  transition: width 0.6s var(--ease-out-expo);
}
.bento-card:hover::after { width: 100%; }
.bento-1 { grid-column: span 5; min-height: 380px; }
.bento-2 { grid-column: span 4; min-height: 380px; }
.bento-3 { grid-column: span 3; min-height: 380px; }
.bento-icon {
  width: 44px; height: 44px; color: var(--copper); margin-bottom: 32px;
  position: relative; z-index: 1;
  transition: transform 0.5s var(--ease-out-expo);
}
.bento-card:hover .bento-icon { transform: translateY(-4px); }
.bento-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400; line-height: 1.2; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.bento-card p {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: var(--text-light); position: relative; z-index: 1; flex: 1;
}
.bento-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--copper); position: relative; z-index: 1; transition: gap 0.4s;
}
.bento-card:hover .bento-arrow { gap: 16px; }
.bento-arrow svg { width: 16px; height: 16px; }

/* ─── WHY US ─── */
.why-section { background: var(--bg-deep); overflow: hidden; }
.why-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 100px); align-items: center;
}
.why-list { margin-top: 56px; }
.why-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border-glass); transition: all 0.4s;
}
.why-item:first-child { border-top: 1px solid var(--border-glass); }
.why-item:hover { padding-left: 8px; }
.why-num {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--copper); padding-top: 2px;
}
.why-item h4 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 8px;
}
.why-item p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.why-visual { position: relative; }
.why-img-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
}
.why-img-float {
  position: absolute; bottom: -40px; left: -40px;
  width: 55%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  border: 3px solid var(--bg-deep);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.why-badge {
  position: absolute; top: 32px; right: 32px;
  background: var(--copper); color: var(--bg-deep); padding: 20px; text-align: center;
}
.why-badge .big { font-family: var(--font-display); font-size: 36px; font-weight: 400; line-height: 1; }
.why-badge .small { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ─── REALISATIONS ─── */
.real-section { background: var(--bg-primary); border-top: 1px solid var(--border-glass); }
.real-header { text-align: center; margin-bottom: 64px; }
.real-header .section-sub { margin: 20px auto 0; }
.real-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.real-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 16/11; }
.real-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
  transition: all 0.8s var(--ease-out-expo); transform: scale(1.05);
}
.real-card:hover img { filter: brightness(0.7) saturate(0.9); transform: scale(1); }
.real-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 3vw, 44px);
  background: linear-gradient(0deg, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.2) 40%, transparent 70%);
}
.real-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--copper);
  margin-bottom: 12px;
  transform: translateY(10px); opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
}
.real-tag::before {
  content: ''; width: 8px; height: 8px; border: 1px solid var(--copper); border-radius: 50%;
}
.real-card:hover .real-tag { opacity: 1; transform: translateY(0); }
.real-card h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px); font-weight: 400;
  transform: translateY(10px); transition: transform 0.5s var(--ease-out-expo) 0.05s;
}
.real-card:hover h4 { transform: translateY(0); }
.real-card .real-loc {
  font-size: 13px; color: var(--text-muted); margin-top: 6px;
  transform: translateY(10px); opacity: 0;
  transition: all 0.5s var(--ease-out-expo) 0.1s;
}
.real-card:hover .real-loc { transform: translateY(0); opacity: 1; }

/* Before/After */
.real-card.before-after { grid-column: span 2; aspect-ratio: 21/9; }
.ba-container {
  position: absolute; inset: 0; cursor: col-resize; user-select: none;
}
.ba-container img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.8); transform: none;
}
.ba-after { clip-path: inset(0 50% 0 0); transition: none; }
.ba-slider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--copper); z-index: 5; transition: none;
}
.ba-slider::before {
  content: '⟨  ⟩'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; background: var(--copper); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-deep); font-size: 14px; font-weight: 600; letter-spacing: 3px;
  box-shadow: 0 4px 24px rgba(196,145,100,0.4);
}
.ba-label {
  position: absolute; top: 20px; z-index: 6;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-white);
  background: rgba(6,6,6,0.6); padding: 6px 14px; backdrop-filter: blur(8px);
}
.ba-label.left { left: 20px; }
.ba-label.right { right: 20px; }
.ba-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 6;
  padding: clamp(24px, 3vw, 44px);
  background: linear-gradient(0deg, rgba(6,6,6,0.9) 0%, transparent 100%);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.ba-content h4 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-weight: 400; }
.ba-content p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.ba-content .ba-cta {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--copper);
  padding: 12px 24px; border: 1px solid var(--copper); white-space: nowrap; transition: all 0.3s;
}
.ba-content .ba-cta:hover { background: var(--copper); color: var(--bg-deep); }

/* ─── SAVOIR-FAIRE ─── */
.sf-section { background: var(--bg-deep); overflow: hidden; }
.sf-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px); align-items: center;
}
.sf-text .section-sub { max-width: 100%; }
.sf-materials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.sf-mat {
  padding: 10px 22px; background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  font-size: 13px; font-weight: 400; color: var(--text-light); transition: all 0.3s;
}
.sf-mat:hover { border-color: var(--copper); color: var(--copper); background: var(--glow-copper); }
.sf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; }
.sf-stat { padding: 24px 0; border-top: 1px solid var(--border-glass); }
.sf-stat:not(:last-child) { border-right: 1px solid var(--border-glass); padding-right: 24px; margin-right: 24px; }
.sf-stat-val { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--copper); line-height: 1; }
.sf-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.sf-visual { position: relative; }
.sf-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.sf-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.75); transition: transform 8s ease;
}
.sf-img-wrapper:hover img { transform: scale(1.06); }
.sf-corner {
  position: absolute; width: 80px; height: 80px;
  border-color: var(--copper); border-style: solid; opacity: 0.4;
}
.sf-corner.tl { top: -12px; left: -12px; border-width: 1px 0 0 1px; }
.sf-corner.br { bottom: -12px; right: -12px; border-width: 0 1px 1px 0; }

/* ─── CONTACT ─── */
.contact-section { background: var(--bg-primary); border-top: 1px solid var(--border-glass); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 80px); align-items: start;
}
.contact-phone-block {
  display: flex; align-items: center; gap: 20px;
  margin-top: 40px; padding: 28px 32px;
  background: var(--bg-elevated); border: 1px solid var(--border-glass);
  transition: border-color 0.4s;
}
.contact-phone-block:hover { border-color: var(--copper); }
.cp-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--copper);
}
.cp-icon svg { width: 20px; height: 20px; color: var(--bg-deep); }
.cp-text a {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  letter-spacing: 1px; transition: color 0.3s;
}
.cp-text a:hover { color: var(--copper); }
.cp-text span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; letter-spacing: 1px; }

.contact-zones { margin-top: 40px; }
.contact-zones h4 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 16px;
}
.zones-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.zone {
  padding: 8px 18px; border: 1px solid var(--border-glass);
  font-size: 13px; color: var(--text-muted); transition: all 0.3s;
}
.zone:hover { border-color: var(--copper); color: var(--copper); }

.contact-form-wrap {
  background: var(--bg-elevated); border: 1px solid var(--border-glass);
  padding: clamp(32px, 4vw, 52px);
}
.cf-title { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin-bottom: 8px; }
.cf-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 36px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 16px 18px; background: var(--bg-deep);
  border: 1px solid var(--border-glass); color: var(--text-white);
  font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.3s; border-radius: 0; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--copper); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { cursor: pointer; }
.field select option { background: var(--bg-deep); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-form {
  width: 100%; padding: 20px; background: var(--copper); color: var(--bg-deep);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; margin-top: 8px;
  position: relative; overflow: hidden; transition: all 0.4s;
}
.btn-form::before {
  content: ''; position: absolute; inset: 0; background: var(--copper-bright);
  transform: translateX(-101%); transition: transform 0.5s var(--ease-out-expo);
}
.btn-form:hover::before { transform: translateX(0); }
.btn-form span { position: relative; z-index: 1; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-deep); padding: 40px 0;
  border-top: 1px solid var(--border-glass);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-inner p { font-size: 12px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.3s;
}
.footer-links a:hover { color: var(--text-muted); }

/* ─── ANIMATIONS ─── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageReveal {
  from { opacity: 0; clip-path: inset(0 0 0 100%); }
  to { opacity: 1; clip-path: inset(0 0 0 0%); }
}
@keyframes heroImageZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}
@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-menu { display: none !important; }
  .nav-cta-wrap { display: none !important; }
  .nav-burger { display: flex; }
  .site-nav { padding: 16px 24px; }
  .site-nav.scrolled { padding: 14px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 140px clamp(24px, 6vw, 64px) 80px; z-index: 3; }
  .hero-right { position: absolute; inset: 0; }
  .hero-image-overlay {
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(6,6,6,0.7) 30%, rgba(6,6,6,0.5) 60%, var(--bg-deep) 100%);
  }
  .hero-image-border { display: none; }
  .hero-scroll-indicator { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-1, .bento-2, .bento-3 { grid-column: span 1; min-height: 280px; }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { order: -1; max-height: 400px; overflow: hidden; }
  .why-img-float { display: none; }
  .real-showcase { grid-template-columns: 1fr; }
  .real-card.before-after { grid-column: span 1; aspect-ratio: 16/10; }
  .sf-grid { grid-template-columns: 1fr; }
  .sf-visual { order: -1; }
  .sf-img-wrapper { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-copper, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .sf-stats { grid-template-columns: 1fr; }
  .sf-stat:not(:last-child) { border-right: none; padding-right: 0; margin-right: 0; }
}

/* ─── WP ADMIN BAR FIX ─── */
body.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
}
