/*
Theme Name: 541 Immobilier
Theme URI: https://stephaniepatruno.fr
Author: Stéphanie Patruno / Mireille Dos Santos
Description: Thème multi-pages pour 5.4.1 Immobilier — Mandataire IAD
Version: 3.0
Text Domain: 541-immo
*/

:root {
  --noir: #111111;
  --bleu: #1B6B8A;
  --bleu2: #155670;
  --bleu-clair: #E6F2F7;
  --gris: #F2F2F0;
  --gris-mid: #888;
  --blanc: #FFFFFF;
  --font: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--blanc); color: var(--noir); font-size: 15px; line-height: 1.65; overflow-x: hidden; }

.sq { display: inline-block; width: 8px; height: 8px; background: var(--bleu); border-radius: 1px; flex-shrink: 0; }
.sq.sm { width: 6px; height: 6px; }
.sq.xs { width: 5px; height: 5px; }

/* ── NAV ── */
nav#topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; background: var(--blanc);
  border-bottom: 1px solid #E0E0E0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; transition: box-shadow 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 1.5rem; text-decoration: none; }
.logo-placeholder { height: 38px; background: #EBEBEB; border-radius: 2px; width: 160px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: #999; }
.nav-sep { width: 1px; height: 28px; background: #E0E0E0; }
.iad-placeholder { height: 30px; width: 50px; background: #E8F5FD; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: #00AADF; }

/* Menu WordPress */
#primary-menu { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
#primary-menu li a { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: #444; text-decoration: none; transition: color 0.18s; }
#primary-menu li a:hover, #primary-menu li.current-menu-item a { color: var(--bleu); }
#primary-menu li.menu-cta a { background: var(--bleu); color: #fff; padding: 9px 22px; border-radius: 2px; font-weight: 500; }
#primary-menu li.menu-cta a:hover { background: var(--bleu2); }

/* ── PAGE HEADER ── */
.page-hero {
  margin-top: 68px; background: var(--noir);
  padding: 4rem 3rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(27,107,138,0.15) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.page-hero-label { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bleu); margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-cond); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: #fff; position: relative; z-index: 1; }
.page-hero h1 strong { font-weight: 600; color: var(--bleu); }
.page-hero-sq { position: absolute; bottom: 1.5rem; right: 2rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; z-index: 1; }
.page-hero-sq span { width: 7px; height: 7px; border-radius: 1px; display: block; }

/* ── CONTENU PAGE ── */
.page-content-wrap { padding-top: 68px; }

/* ── HERO ACCUEIL ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 68px); }
.hero-left { background: var(--noir); display: flex; flex-direction: column; justify-content: center; padding: 5rem 4rem; position: relative; overflow: hidden; }
.hero-left::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(27,107,138,0.18) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.hero-tag { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bleu); margin-bottom: 2.5rem; position: relative; z-index: 1; }
.hero h1 { font-family: var(--font-cond); font-size: clamp(2.8rem, 4.5vw, 4.5rem); font-weight: 300; line-height: 1.08; letter-spacing: 0.01em; color: var(--blanc); margin-bottom: 1.8rem; position: relative; z-index: 1; }
.hero h1 span { color: var(--bleu); font-weight: 600; }
.hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 400px; line-height: 1.8; margin-bottom: 3rem; position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-squares { position: absolute; bottom: 2.5rem; right: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; z-index: 1; }
.hero-squares span { width: 8px; height: 8px; border-radius: 1px; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; animation: slow-zoom 18s ease-in-out infinite alternate; }
@keyframes slow-zoom { from { transform: scale(1); } to { transform: scale(1.04); } }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(17,17,17,0.15) 0%, transparent 40%); }

/* ── BOUTONS ── */
.btn { padding: 13px 28px; font-family: var(--font); font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; display: inline-block; border-radius: 2px; cursor: pointer; transition: all 0.18s; border: none; }
.btn-primary { background: var(--bleu); color: #fff; }
.btn-primary:hover { background: var(--bleu2); }
.btn-outline-w { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-w:hover { border-color: var(--bleu); background: rgba(27,107,138,0.15); }
.btn-outline-d { background: transparent; color: var(--noir); border: 1px solid #CCC; }
.btn-outline-d:hover { border-color: var(--bleu); color: var(--bleu); }

/* ── SEARCH ── */
.search-bar { background: var(--blanc); border-bottom: 1px solid #E0E0E0; padding: 1.6rem 3rem; display: flex; gap: 1.5rem; align-items: flex-end; }
.sf { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sf label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bleu); }
.sf select, .sf input { border: none; border-bottom: 1.5px solid #DDD; padding: 7px 0; font-family: var(--font); font-size: 14px; color: var(--noir); background: transparent; outline: none; appearance: none; transition: border-color 0.18s; cursor: pointer; }
.sf select:focus, .sf input:focus { border-color: var(--bleu); }
.search-go { background: var(--noir); color: #fff; border: none; padding: 11px 32px; font-family: var(--font); font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; cursor: pointer; border-radius: 2px; transition: background 0.18s; white-space: nowrap; align-self: flex-end; margin-bottom: 1px; }
.search-go:hover { background: var(--bleu); }

/* ── STATS ── */
.stats { background: var(--bleu); display: grid; grid-template-columns: repeat(4, 1fr); padding: 2.5rem 3rem; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 32px; background: rgba(255,255,255,0.2); }
.stat-n { display: block; font-family: var(--font-cond); font-size: 2.8rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 4px; letter-spacing: 0.02em; }
.stat-l { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ── SECTIONS ── */
section { padding: 5.5rem 3rem; }
.sec-label { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bleu); margin-bottom: 0.7rem; }
.sec-title { font-family: var(--font-cond); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; letter-spacing: 0.02em; line-height: 1.15; color: var(--noir); margin-bottom: 0.8rem; }
.sec-title strong { font-weight: 600; color: var(--bleu); }
.sec-sub { font-size: 14.5px; font-weight: 300; color: var(--gris-mid); max-width: 520px; line-height: 1.8; margin-bottom: 3rem; }

/* ── BIENS ── */
.filters { display: flex; gap: 0; margin-bottom: 2.5rem; border: 1px solid #DDD; border-radius: 2px; overflow: hidden; width: fit-content; }
.filters button { padding: 8px 22px; background: none; border: none; border-right: 1px solid #DDD; font-family: var(--font); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--gris-mid); cursor: pointer; transition: all 0.18s; }
.filters button:last-child { border-right: none; }
.filters button.on { background: var(--bleu); color: #fff; }
.filters button:not(.on):hover { background: var(--gris); color: var(--bleu); }
.biens-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.grid-biens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #E0E0E0; border: 1px solid #E0E0E0; }
.bien { background: var(--blanc); cursor: pointer; transition: background 0.18s; position: relative; overflow: hidden; }
.bien:hover { background: var(--bleu-clair); }
.bien.large { grid-column: span 2; }
.bien-img { overflow: hidden; position: relative; }
.bien-img img { width: 100%; display: block; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.bien.large .bien-img img { height: 340px; }
.bien:hover .bien-img img { transform: scale(1.03); }
.bien-tag { position: absolute; top: 0; left: 0; background: var(--bleu); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; }
.bien-tag.exclu { background: var(--noir); }
.bien-fav { position: absolute; top: 0.7rem; right: 0.8rem; background: rgba(255,255,255,0.92); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: background 0.18s; z-index: 1; }
.bien-fav:hover { background: var(--bleu); color: #fff; }
.bien-body { padding: 1.3rem 1.5rem 1.5rem; }
.bien-prix { font-family: var(--font-cond); font-size: 1.6rem; font-weight: 400; color: var(--noir); display: flex; align-items: baseline; gap: 6px; margin-bottom: 0.2rem; }
.bien-prix small { font-family: var(--font); font-size: 12px; font-weight: 300; color: var(--gris-mid); }
.bien-titre { font-size: 14.5px; font-weight: 400; color: var(--noir); margin-bottom: 0.2rem; line-height: 1.35; }
.bien-loc { font-size: 12px; color: var(--gris-mid); margin-bottom: 1rem; }
.bien-specs { border-top: 1px solid #EBEBEB; padding-top: 0.9rem; display: flex; gap: 1.2rem; font-size: 12px; color: var(--gris-mid); flex-wrap: wrap; }

/* ── QUI SUIS-JE ── */
.qui-section { background: var(--noir); color: var(--blanc); display: grid; grid-template-columns: 1fr 1fr; }
.qui-img { position: relative; overflow: hidden; min-height: 560px; }
.qui-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); }
.qui-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(17,17,17,0.7) 100%); }
.qui-squares { position: absolute; bottom: 2rem; left: 2rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.qui-squares span { width: 7px; height: 7px; border-radius: 1px; }
.qui-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.qui-content .sec-title { color: var(--blanc); }
.qui-content .sec-title strong { color: var(--bleu); }
.qui-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 1.5rem; }
.qui-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
.qui-val { border-left: 2px solid var(--bleu); padding-left: 1rem; }
.qui-val h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.qui-val p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.5; }
.qui-sign { font-family: var(--font); font-style: italic; font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,0.4); margin: 1.5rem 0; }
.qui-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qui-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; border: 1px solid rgba(27,107,138,0.5); color: var(--bleu); padding: 5px 12px; border-radius: 2px; }

/* ── SERVICES ── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #E0E0E0; border: 1px solid #E0E0E0; margin-top: 3rem; }
.svc { background: var(--blanc); padding: 2.2rem 2rem; transition: background 0.18s; position: relative; }
.svc:hover { background: var(--bleu-clair); }
.svc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--bleu); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.svc:hover::after { transform: scaleX(1); }
.svc-num { font-family: var(--font-cond); font-size: 3.5rem; font-weight: 200; color: #EBEBEB; line-height: 1; margin-bottom: 1.2rem; transition: color 0.18s; }
.svc:hover .svc-num { color: var(--bleu-clair); }
.svc-title { font-size: 15px; font-weight: 500; color: var(--noir); margin-bottom: 0.6rem; }
.svc-desc { font-size: 13px; font-weight: 300; color: var(--gris-mid); line-height: 1.7; }

/* ── BLOG ── */
.blog-section { background: var(--gris); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--blanc); border: 1px solid #E4E4E4; overflow: hidden; cursor: pointer; transition: box-shadow 0.25s, transform 0.25s; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(27,107,138,0.1); transform: translateY(-3px); }
.blog-img { overflow: hidden; }
.blog-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.03); }
.blog-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bleu); display: flex; align-items: center; gap: 6px; padding: 1rem 1.4rem 0; }
.blog-body { padding: 0.7rem 1.4rem 1.5rem; }
.blog-date { font-size: 11.5px; color: #AAA; margin-bottom: 0.5rem; }
.blog-titre { font-size: 15.5px; font-weight: 500; color: var(--noir); line-height: 1.35; margin-bottom: 0.6rem; }
.blog-extrait { font-size: 13px; font-weight: 300; color: var(--gris-mid); line-height: 1.7; margin-bottom: 1rem; }
.blog-lire { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--bleu); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.18s; }
.blog-card:hover .blog-lire { gap: 10px; }

/* ── AVIS ── */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #E0E0E0; border: 1px solid #E0E0E0; margin-top: 3rem; }
.avis-card { background: var(--blanc); padding: 2.2rem; }
.avis-stars { color: var(--bleu); font-size: 13px; letter-spacing: 3px; margin-bottom: 1rem; }
.avis-text { font-size: 14.5px; font-weight: 300; font-style: italic; color: #555; line-height: 1.75; margin-bottom: 1.5rem; }
.avis-author { display: flex; align-items: center; gap: 0.8rem; }
.avis-name { font-size: 13.5px; font-weight: 600; color: var(--noir); }
.avis-info { font-size: 11.5px; color: var(--gris-mid); }

/* ── CONTACT ── */
.contact-section { background: var(--noir); }
.contact-section .sec-title { color: var(--blanc); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.c-items { display: flex; flex-direction: column; gap: 1.8rem; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bleu); margin-bottom: 3px; }
.c-val { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.6; }
.iad-bar { margin-top: 2rem; padding: 1rem 1.2rem; border-left: 3px solid var(--bleu); background: rgba(27,107,138,0.1); }
.iad-bar p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.6; }
.iad-bar strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.iad-ph-sm { display: inline-block; background: rgba(0,170,223,0.15); border: 1px solid rgba(0,170,223,0.3); border-radius: 2px; padding: 4px 10px; font-size: 12px; font-weight: 700; color: #00AADF; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.c-form { display: flex; flex-direction: column; gap: 1.2rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.f-group input, .f-group select, .f-group textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 11px 14px; font-family: var(--font); font-size: 14px; font-weight: 300; color: #fff; outline: none; transition: border-color 0.18s; width: 100%; }
.f-group textarea { resize: vertical; min-height: 110px; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--bleu); }
.f-group input::placeholder, .f-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.f-group select option { background: #1a1a1a; }
.btn-submit { background: var(--bleu); color: #fff; border: none; padding: 14px; font-family: var(--font); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.18s; width: 100%; }
.btn-submit:hover { background: var(--bleu2); }

/* ── FOOTER ── */
footer { background: #0A0A0A; padding: 3.5rem 3rem 2rem; border-top: 1px solid #1E1E1E; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 2.5rem; }
.ft-logos { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.ft-logo-ph { height: 32px; background: #1E1E1E; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: #555; padding: 0 14px; }
.ft-sep { width: 1px; height: 24px; background: #2A2A2A; }
.ft-iad-ph { height: 28px; padding: 0 12px; background: rgba(0,170,223,0.08); border: 1px solid rgba(0,170,223,0.2); display: flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: rgba(0,170,223,0.7); }
.ft-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1.8; max-width: 230px; }
.ft-socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.ft-soc { width: 32px; height: 32px; border: 1px solid #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #555; text-decoration: none; transition: all 0.18s; }
.ft-soc:hover { border-color: var(--bleu); color: var(--bleu); }
.ft-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bleu); margin-bottom: 1.1rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.ft-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.18s; }
.ft-col ul a:hover { color: rgba(255,255,255,0.8); }
.ft-bottom { border-top: 1px solid #1A1A1A; padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 1rem; }
.ft-bottom a { color: inherit; text-decoration: none; }
.ft-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── ELEMENTOR ── */
.elementor-section { margin: 0 !important; }
.elementor-widget-wrap { padding: 0 !important; }
.elementor-container { max-width: 100% !important; padding: 0 !important; }
.e-con, .e-con-inner { padding: 0 !important; max-width: 100% !important; }
.elementor-widget-html { margin: 0; padding: 0; }
.elementor-widget-html .elementor-widget-container { margin: 0; padding: 0; }

/* ── ANIMATIONS ── */
.r { opacity: 0; transform: translateY(18px); transition: opacity 0.65s, transform 0.65s; }
.r.v { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.08s; }
.r.d2 { transition-delay: 0.16s; }
.r.d3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .qui-section { grid-template-columns: 1fr; }
  .qui-img { min-height: 300px; }
  .grid-biens { grid-template-columns: repeat(2,1fr); }
  .bien.large { grid-column: span 1; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav#topnav { padding: 0 1.2rem; }
  #primary-menu { display: none; }
  section { padding: 4rem 1.2rem; }
  .stats { padding: 2rem 1.2rem; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .search-bar { flex-direction: column; padding: 1.2rem; }
  .grid-biens, .avis-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .f-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-left { padding: 3rem 1.5rem 3.5rem; }
  .qui-vals { grid-template-columns: 1fr; }
  .qui-content { padding: 3rem 1.5rem; }
}
