/* ============================================================
   SCP VASSEUR PETIT — style.css
   Palette: Navy #0a192f | Gold #c5a059 | Gray #495670 | White
   ============================================================ */

/* ── TOKENS & RESET ─────────────────────────────────────────── */
:root {
  --navy:      #0a192f;
  --navy-mid:  #112240;
  --navy-light:#1e3a5f;
  --gold:      #c5a059;
  --gold-light:#d4b478;
  --gray:      #495670;
  --gray-light:#8892a4;
  --white:     #ffffff;
  --off-white: #f8f6f1;
  --bg-section:#fdfdfd;
  --border:    rgba(197,160,89,.25);
  --shadow-sm: 0 2px 12px rgba(10,25,47,.08);
  --shadow-md: 0 8px 32px rgba(10,25,47,.14);
  --shadow-lg: 0 20px 60px rgba(10,25,47,.2);
  --radius:    2px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--bg-section);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,blockquote { font-family: 'Playfair Display', serif; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 12px;
  margin-bottom: 48px;
}
.sub-tel {
  color: var(--gold);
  font-weight: 600;
  transition: opacity var(--transition);
}
.sub-tel:hover { opacity: .75; }

/* ── HEADER ─────────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,160,89,.15);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.btn-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: .875rem !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  white-space: nowrap;
}
.btn-cta::after { display: none !important; }
.btn-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,160,89,.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
  pointer-events: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,25,47,.85) 0%, rgba(10,25,47,.6) 50%, rgba(10,25,47,.82) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2400&auto=format')
    center/cover no-repeat fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(197,160,89,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 20px 40px;
  max-width: 800px;
  animation: heroFadeIn .9s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(197,160,89,.6);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 0;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-highlight { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 0;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197,160,89,.45);
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.45);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 0;
  font-weight: 600;
  font-size: .95rem;
  backdrop-filter: blur(4px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,160,89,.07);
  transform: translateY(-2px);
}



/* ── CABINET ─────────────────────────────────────────────────── */
#cabinet {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(197,160,89,.12);
}
#cabinet h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 560px;
}

.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cabinet-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cabinet-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-plus { color: var(--gold); }
.stat-label {
  font-size: .78rem;
  color: var(--gray-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cabinet-quote {
  border-left: 3px solid var(--gold);
  padding: 32px 40px;
  background: linear-gradient(135deg, #f8f4ec, #fdfbf7);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
}
.cabinet-quote blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 16px;
}
.cabinet-quote cite {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
  letter-spacing: .06em;
}

/* ── AVOCATS ─────────────────────────────────────────────────── */
#avocats {
  padding: 100px 0;
  background: var(--off-white);
}
#avocats h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.avocats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.card-avocat {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197,160,89,.15);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card-avocat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}
.card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}
.card-avocat:hover .card-image-wrapper img { transform: scale(1.06); }

/* Hover overlay — dark reveal */
.card-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0);
  display: flex;
  align-items: flex-end;
  transition: background .4s ease;
  overflow: hidden;
}
.card-avocat:hover .card-image-overlay {
  background: rgba(10, 25, 47, .82);
}

.card-hover-content {
  padding: 32px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-avocat:hover .card-hover-content {
  opacity: 1;
  transform: translateY(0);
}
.hover-label {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-hover-content p {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
}

.card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* card-tag removed per user request */
.card-body h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.card-body > p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-domains {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.card-domains li {
  font-size: .88rem;
  color: var(--navy);
  padding: 7px 0;
  border-bottom: 1px solid rgba(197,160,89,.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-domains li::before {
  content: '▸';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

.card-cta {
  display: inline-block;
  align-self: flex-start;
  border: 1.5px solid var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 0;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.card-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateX(4px);
}

.card-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 16px;
  transition: color var(--transition);
}
.card-email svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.card-email:hover { color: var(--gold); }

/* ── DOMAINES ────────────────────────────────────────────────── */
#domaines {
  padding: 100px 0;
  background: var(--navy);
}
#domaines .section-label { color: var(--gold); }
#domaines h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 56px;
}
.domaines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.domaine-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(197,160,89,.2);
  border-radius: 0;
  padding: 32px 28px;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), border-left-color var(--transition);
}
.domaine-card:hover {
  border-left-color: var(--gold);
  background: rgba(197,160,89,.08);
  border-color: var(--gold);
}
.domaine-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--gold);
}
.domaine-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.domaine-card h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.domaine-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── FORMULAIRE ──────────────────────────────────────────────── */
#formulaire {
  padding: 100px 0;
  background: var(--white);
}
#formulaire h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.form-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: 0;
  padding: 56px 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197,160,89,.12);
  position: relative;
  overflow: hidden;
}
.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.required { color: var(--gold); }

input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid rgba(73,86,112,.2);
  border-radius: 0;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-light); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,.18);
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #c84b4b;
  box-shadow: 0 0 0 3px rgba(200,75,75,.12);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23495670' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 130px; }

.field-error {
  font-size: .78rem;
  color: #c84b4b;
  min-height: 18px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.form-notice {
  font-size: .8rem;
  color: var(--gray-light);
  flex: 1;
  min-width: 200px;
}

.btn-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,160,89,.4);
}
.btn-submit:active { transform: translateY(0); }
.btn-icon { font-size: 1.1rem; transition: transform var(--transition); }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

/* SUCCESS STATE */
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: heroFadeIn .4s ease both;
}
.success-icon {
  width: 70px; height: 70px;
  border-radius: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(197,160,89,.4);
}
.form-success h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--gray);
  margin-bottom: 28px;
}
.btn-reset {
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--navy);
  padding: 10px 28px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-reset:hover { background: var(--gold); color: var(--white); }

/* ── CONTACT BAR ─────────────────────────────────────────────── */
#contact-bar {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy));
  border-top: 1px solid rgba(197,160,89,.2);
}
.contact-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  padding: 8px 32px;
}
.contact-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}
.contact-link {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-divider {
  width: 1px;
  height: 24px;
  background: rgba(197,160,89,.3);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(197,160,89,.15);
  padding: 48px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  opacity: .85;
}
.footer-middle {
  text-align: center;
}
.footer-address {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 4px;
}
.footer-bar {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.footer-tel, .footer-email {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  transition: color var(--transition);
}
.footer-tel:hover, .footer-email:hover { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 18px 40px;
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  letter-spacing: .04em;
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cabinet-grid { grid-template-columns: 1fr; gap: 40px; }
  .domaines-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-logo { justify-content: center; }
}

@media (max-width: 768px) {
  .section-inner { padding: 0 24px; }
  .nav-container { padding: 0 24px; overflow: visible !important; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; right: 0;
    width: 280px; height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    display: none; /* Simplified: hide by default */
    transition: opacity var(--transition);
    box-shadow: -10px 0 40px rgba(10,25,47,.15);
    overflow-y: auto;
    padding: 20px 0;
    z-index: 1001;
  }
  .nav-links.open { display: flex !important; opacity: 1 !important; visibility: visible !important; } /* Simplified: show as flex */
  .nav-links li { border-bottom: 1px solid rgba(0,0,0,.05); }
  .nav-links a {
    display: block;
    padding: 16px 28px;
    font-size: 1rem;
  }
  .btn-cta { margin: 12px 24px !important; border-radius: var(--radius); }

  #hero { background-attachment: scroll; }
  .hero-content { padding: 20px 24px; }

  .avocats-grid { grid-template-columns: 1fr; }
  .domaines-grid { grid-template-columns: 1fr 1fr; }

  .form-wrapper { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-bar-inner { flex-direction: column; gap: 4px; }
  .contact-divider { display: none; }
  .contact-item { padding: 6px 0; }

  #cabinet { padding: 70px 0; }
  #avocats, #domaines, #formulaire { padding: 70px 0; }
}

@media (max-width: 480px) {
  .domaines-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
  .card-image-wrapper { height: auto; aspect-ratio: 4 / 5; }
  .card-image-wrapper img { object-fit: contain; background: var(--off-white); }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}
