/* ─────────────────────────────────────────────────────────────
   DandoyBTP — Design System
   Dark mode professionnel · Accent orange · Bebas Neue + Outfit
   ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg:          #080808;
  --bg-2:        #101010;
  --bg-3:        #181818;
  --bg-4:        #202020;
  --accent:      #f97316;
  --accent-dark: #c2550d;
  --accent-glow: rgba(249,115,22,.18);
  --text:        #f0f0f0;
  --text-2:      #999;
  --text-3:      #555;
  --border:      #252525;
  --border-2:    #303030;
  --success:     #22c55e;
  --error:       #ef4444;
  --warning:     #f59e0b;
  --info:        #3b82f6;
  --r:           8px;
  --r-lg:        16px;
  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.8);
  --font-head:   'Bebas Neue', sans-serif;
  --font-body:   'Outfit', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--font-body); }

/* ── Container ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: .04em; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.section-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .5rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: all .2s; border: none; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--accent-glow); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-glow); }
.btn-ghost {
  background: var(--bg-3); color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--bg-4); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-danger { background: var(--error); color: #fff; }
.btn-danger:hover { background: #c53030; }
.btn-success { background: var(--success); color: #fff; }

/* ── Navbar ──────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-head); font-size: 1.6rem; letter-spacing: .06em;
}
.logo svg { color: var(--accent); }
.logo strong { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .5rem 1rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-3); }
.nav-links .nav-cta {
  margin-left: .5rem; padding: .5rem 1.25rem;
  background: var(--accent); color: #fff; border-radius: var(--r);
}
.nav-links .nav-cta:hover { background: var(--accent-dark); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s;
}
.nav-mobile {
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem 1.5rem; border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .75rem 1rem; border-radius: var(--r);
  font-weight: 500; color: var(--text-2); transition: .2s;
}
.nav-mobile a:hover { color: var(--text); background: var(--bg-3); }
.nav-mobile .nav-cta { background: var(--accent); color: #fff; text-align: center; }

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem; min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(249,115,22,.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(249,115,22,.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .03;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-glow); border: 1px solid rgba(249,115,22,.3);
  color: var(--accent); padding: .4rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--text); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem; color: var(--text-2); max-width: 540px;
  line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat { }
.hero-stat .number {
  font-family: var(--font-head); font-size: 2.4rem; color: var(--accent);
  line-height: 1;
}
.hero-stat .label { font-size: .8rem; color: var(--text-2); margin-top: .2rem; }

/* ── Cards ────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: all .25s;
}
.card:hover {
  border-color: rgba(249,115,22,.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--accent-glow); border: 1px solid rgba(249,115,22,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.3rem; margin-bottom: 1.25rem;
}

/* ── Section ─────────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-2); max-width: 560px; margin: 0 auto; }

/* ── Grid ─────────────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ── Badge / Tag ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: .2rem .6rem; border-radius: 4px;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-accent  { background: var(--accent-glow);       color: var(--accent); border: 1px solid rgba(249,115,22,.3); }
.badge-success { background: rgba(34,197,94,.12);       color: var(--success); }
.badge-info    { background: rgba(59,130,246,.12);      color: var(--info); }
.badge-warning { background: rgba(245,158,11,.12);      color: var(--warning); }
.badge-error   { background: rgba(239,68,68,.12);       color: var(--error); }

.type-depannage  { color: var(--error);   background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.25); }
.type-diagnostic { color: var(--info);    background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25); }
.type-devis      { color: #a78bfa;        background: rgba(167,139,250,.1); border: 1px solid rgba(167,139,250,.25); }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; color: var(--text-2); }
.form-group label .req { color: var(--accent); }
.form-control {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--r); color: var(--text);
  font-size: .95rem; transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-control::placeholder { color: var(--text-3); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Modal ───────────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.8); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--r-lg); padding: 2rem; max-width: 580px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  animation: fadeUp .25s ease;
}
.modal-lg { max-width: 780px; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg-4); border: 1px solid var(--border-2);
  border-radius: var(--r); padding: .35rem .6rem; cursor: pointer; color: var(--text-2);
  font-size: 1.1rem; transition: .2s;
}
.modal-close:hover { color: var(--text); background: var(--bg); }
.modal h3 { margin-bottom: 1.25rem; }

/* ── Calendar (RDV) ──────────────────────────────────────────────────────────── */
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-month { font-family: var(--font-head); font-size: 1.5rem; }
.cal-nav-btn {
  background: var(--bg-4); border: 1px solid var(--border-2);
  border-radius: var(--r); width: 36px; height: 36px; cursor: pointer;
  color: var(--text-2); font-size: 1rem; transition: .2s;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover:not(:disabled) { background: var(--bg); color: var(--accent); border-color: var(--accent); }
.cal-nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-day-label {
  text-align: center; font-size: .72rem; font-weight: 600;
  color: var(--text-3); padding: .4rem 0; letter-spacing: .05em; text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all .15s; border: 1px solid transparent; position: relative;
}
.cal-day.other-month { color: var(--text-3); pointer-events: none; }
.cal-day.disabled    { color: var(--text-3); cursor: not-allowed; opacity: .4; pointer-events: none; }
.cal-day.available   { color: var(--text); }
.cal-day.available:hover { background: var(--bg-4); border-color: var(--border-2); }
.cal-day.selected    { background: var(--accent); color: #fff; border-color: var(--accent); }
.cal-day.today::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}

/* ── Slots ───────────────────────────────────────────────────────────────────── */
.slots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(90px,1fr));
  gap: .6rem;
}
.slot-btn {
  padding: .6rem; border: 1px solid var(--border-2); border-radius: var(--r);
  background: var(--bg-2); color: var(--text); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all .15s; text-align: center;
}
.slot-btn:hover    { border-color: var(--accent); color: var(--accent); }
.slot-btn.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Divider ─────────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── Alert ───────────────────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem; border-radius: var(--r); font-size: .9rem;
  border: 1px solid; margin-bottom: 1rem;
}
.alert-success { background: rgba(34,197,94,.1);  border-color: rgba(34,197,94,.3);  color: var(--success); }
.alert-error   { background: rgba(239,68,68,.1);  border-color: rgba(239,68,68,.3);  color: var(--error); }
.alert-info    { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.3); color: var(--info); }
.alert-warning { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); color: var(--warning); }

/* ── Tabs ────────────────────────────────────────────────────────────────────── */
.tabs {
  display: flex; gap: .25rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}
.tab-btn {
  padding: .75rem 1.25rem; border: none; background: none;
  color: var(--text-2); font-size: .9rem; font-weight: 500; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: .2s;
}
.tab-btn:hover  { color: var(--text); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Table ───────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--bg-3); padding: .9rem 1rem; text-align: left;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border); transition: .15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg-2); }
tbody td { padding: .85rem 1rem; font-size: .9rem; }

/* ── Comparison slider (réalisations) ────────────────────────────────────────── */
.comparison-card { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: ew-resize; user-select: none; }
.comparison-card .img-panel { position: absolute; inset: 0; overflow: hidden; }
.comparison-card .img-panel.after { clip-path: inset(0 50% 0 0); }
.comparison-card .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; letter-spacing: .2em; color: rgba(255,255,255,.2);
}
.comparison-card .placeholder.before-ph { background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%); }
.comparison-card .placeholder.after-ph  { background: linear-gradient(135deg, #1c1812 0%, #2a2010 100%); }
.comparison-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--accent); cursor: ew-resize; z-index: 2;
}
.comparison-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; box-shadow: var(--shadow);
}
.comparison-label {
  position: absolute; top: 1rem; padding: .3rem .8rem;
  background: rgba(0,0,0,.7); border-radius: 4px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}
.comparison-label.before { left: 1rem; }
.comparison-label.after  { right: 1rem; }

/* ── Category pill ──────────────────────────────────────────────────────────── */
.cat-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .75rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  background: var(--bg-4); border: 1px solid var(--border-2); color: var(--text-2);
}
.cat-pill.active, .cat-pill:hover { background: var(--accent-glow); border-color: rgba(249,115,22,.3); color: var(--accent); cursor: pointer; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; color: var(--text-2); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .88rem; color: var(--text-2); transition: .2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--text-3);
}
.footer-contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-2); margin-bottom: .5rem;
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Spinner ─────────────────────────────────────────────────────────────────── */
.spinner {
  width: 24px; height: 24px; border: 2px solid var(--border-2);
  border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite;
}
.spinner-lg { width: 40px; height: 40px; border-width: 3px; }
.loading-center { display: flex; align-items: center; justify-content: center; padding: 3rem; }

/* ── Scrollbar ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ── Animations ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes spin    { to { transform:rotate(360deg); } }
.fade-up { animation: fadeUp .4s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links   { display: none; }
  .nav-toggle  { display: flex; }
  .grid-3      { grid-template-columns: repeat(2,1fr); }
  .grid-4      { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero        { min-height: auto; padding: 3rem 0; }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats  { gap: 1.5rem; }
}

/* ── Utility ─────────────────────────────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-2); }
.text-center  { text-align: center; }
.mt-1 { margin-top: .5rem;  } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.hidden  { display: none !important; }
.visible { display: block !important; }

/* ── Photo placeholders ──────────────────────────────────────────────────────── */
.photo-slot {
  background: var(--bg-2);
  border: 2px dashed rgba(249,115,22,.35);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.photo-slot-inner {
  text-align: center; padding: 2rem 1.5rem; pointer-events: none;
}
.photo-slot-inner svg { color: var(--text-3); margin: 0 auto .75rem; display: block; }
.photo-slot-label { font-size: .78rem; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .35rem; }
.photo-slot-hint  { font-size: .72rem; color: var(--text-3); margin-bottom: .6rem; line-height: 1.4; }
.photo-slot-name  { font-size: .72rem; font-family: monospace; background: var(--bg-3); padding: .2rem .5rem; border-radius: 4px; color: rgba(249,115,22,.8); border: 1px solid rgba(249,115,22,.2); }

/* ── Trade icons (SVG illustrations) ────────────────────────────────────────── */
.trade-icon { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.trade-icon svg { filter: drop-shadow(0 0 12px var(--accent-glow)); }

/* ── About section ───────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; }
@media (max-width:900px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Realizations preview ─────────────────────────────────────────────────────── */
.real-preview-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: .25s; }
.real-preview-card:hover { border-color: rgba(249,115,22,.35); transform: translateY(-3px); box-shadow: var(--shadow); }
.real-preview-img { height: 200px; position: relative; overflow: hidden; }

/* ── Hero 2-col ───────────────────────────────────────────────────────────────── */
.hero-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-photo-wrap { position: relative; }
.hero-photo-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--r-lg); padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow-lg); z-index: 2;
}
.hero-photo-badge .badge-icon { font-size: 1.5rem; }
.hero-photo-badge .badge-text { font-size: .8rem; font-weight: 600; line-height: 1.4; }
.hero-photo-badge .badge-sub  { font-size: .72rem; color: var(--text-2); font-weight: 400; }
.hero-deco { position: absolute; top: -1.5rem; right: -1.5rem; z-index: 0; opacity: .5; pointer-events: none; }
@media (max-width: 900px) {
  .hero-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo-wrap { order: -1; max-width: 400px; margin: 0 auto; }
}
