:root {
  --green: #00b050;
  --green-dark: #008c3e;
  --green-light: #e8f7ef;
  --dark: #0d1117;
  --dark-2: #1a2230;
  --text: #2c3e50;
  --text-muted: #6b7a8d;
  --cream: #faf8f5;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
h1, h2, h3, .display-font { font-family: 'Cormorant Garamond', serif; }
section { scroll-margin-top: 86px; }

/* NAVBAR */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.navbar .container { padding: 0 1.5rem; }
.navbar-brand { padding: .45rem 0; }
.navbar-brand img { height: 56px; width: auto; transition: transform 0.2s; mix-blend-mode: multiply; }
.navbar-brand:hover img { transform: scale(1.03); }
.nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--text) !important;
  padding: 1.6rem 0.85rem !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.85rem; right: 0.85rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--green) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.btn-nav-cta {
  background: var(--green);
  color: white !important;
  border-radius: 50px;
  padding: 0.55rem 1.35rem !important;
  font-weight: 700;
}
.btn-nav-cta::after { display: none; }
.btn-nav-cta:hover { background: var(--green-dark) !important; color: white !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,176,80,0.3); }

/* HERO */
.hero, .page-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero.compact-hero { min-height: 58svh; padding: 9rem 0 4.5rem; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-salon.webp') center center / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.88) 0%, rgba(13,17,23,0.64) 58%, rgba(0,176,80,0.20) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 4.5rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,176,80,0.2);
  border: 1px solid rgba(0,176,80,0.4);
  color: #72e3a4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; flex: 0 0 auto; }
.hero h1, .page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); }
.hero h1 span, .page-hero h1 span { color: var(--green); }
.hero-subtitle {
  font-size: 1.17rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 660px;
  line-height: 1.75;
  margin-top: 1.25rem;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; animation: fadeInUp 0.6s 0.3s ease both; }
.btn-primary-rentlee, .btn-ghost-rentlee, .btn-offer {
  border-radius: 50px;
  padding: 0.92rem 2.05rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
}
.btn-primary-rentlee { background: var(--green); color: white; }
.btn-primary-rentlee:hover { background: var(--green-dark); color: white; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,176,80,0.38); }
.btn-ghost-rentlee { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-rentlee:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3.2rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,0.12); animation: fadeInUp 0.6s 0.4s ease both; }
.hero-stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.58); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.35rem; }
.hero-stat-accent { color: var(--green); }
.hero-scroll { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.52); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; animation: fadeIn 1s 1s ease both; }
.hero-scroll .arrow { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: bounce 2s infinite; }
.hero-scroll i { color: rgba(255,255,255,0.60); font-size: .72rem; }

/* SECTIONS */
.section-white { background: white; padding: 7rem 0; }
.section-cream { background: var(--cream); padding: 7rem 0; }
.section-dark { background: var(--dark); padding: 7rem 0; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; width: 620px; height: 620px; background: radial-gradient(circle, rgba(0,176,80,0.13) 0%, transparent 70%); top: -180px; left: -150px; pointer-events: none; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 600; color: var(--dark); line-height: 1.14; letter-spacing: -0.02em; }
.section-title span { color: var(--green); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 700px; margin: 0 auto; font-weight: 300; }
.section-dark .section-title { color: white; }
.section-dark .section-label { color: #72e3a4; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.62); }
.large-text { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; }

/* CARDS */
.service-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.35s ease; height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(0,176,80,0.20); }
.service-card-img-wrap { overflow: hidden; position: relative; background: #edf1ef; }
.service-card-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-tag { position: absolute; top: 1rem; left: 1rem; background: var(--green); color: white; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.32rem 0.82rem; border-radius: 50px; }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 { font-size: 1.38rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.service-card-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.learn-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.86rem; font-weight: 700; color: var(--green); text-decoration: none; }
.learn-more:hover { gap: 0.65rem; color: var(--green-dark); }

.included-card { height: 100%; background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.35rem 1.25rem; display: flex; gap: 0.85rem; align-items: flex-start; transition: all 0.25s ease; }
.included-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.07); background: white; }
.included-icon { width: 32px; height: 32px; background: var(--green-light); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.included-card h4 { font-size: 0.98rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.included-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

.process-card { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px; padding: 2rem; height: 100%; backdrop-filter: blur(8px); transition: all 0.3s ease; }
.process-card:hover { transform: translateY(-5px); border-color: rgba(0,176,80,0.35); }
.process-number { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 1.2rem; }
.process-card h3 { color: white; font-size: 1.24rem; margin-bottom: 0.7rem; }
.process-card p { color: rgba(255,255,255,0.66); font-size: 0.9rem; line-height: 1.7; margin: 0; }

.info-panel { border: 1px solid var(--border); border-radius: 22px; padding: 2.2rem; background: var(--cream); }
.info-panel p { color: var(--text-muted); line-height: 1.8; }
.green-panel { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: white; border-color: transparent; }
.green-panel h3 { font-size: 2rem; margin-bottom: 1rem; }
.green-panel .clean-list li { color: rgba(255,255,255,0.90); }
.clean-list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.clean-list li { margin-bottom: .8rem; color: var(--text-muted); line-height: 1.6; display: flex; gap: .6rem; }
.clean-list li::before { content: '✓'; color: var(--green); font-weight: 800; }
.green-panel .clean-list li::before { color: white; }

/* ABOUT / AREAS */
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: 480px; }
.about-img-main { grid-row: span 2; border-radius: 16px; overflow: hidden; }
.about-img-side { border-radius: 16px; overflow: hidden; }
.about-img-main img, .about-img-side img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--green-light); border: 1px solid rgba(0,176,80,0.20); border-radius: 12px; padding: 0.8rem 1.2rem; margin-bottom: 1.4rem; }
.about-badge-icon { width: 36px; height: 36px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; }
.about-badge-text { font-size: 0.86rem; font-weight: 700; color: var(--green-dark); }
.about-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text); }
.about-features li:last-child { border-bottom: none; }
.about-features li .check { width: 20px; height: 20px; background: var(--green-light); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; margin-top: 0.1rem; }
.area-box { background: var(--cream); border: 1px solid var(--border); border-radius: 22px; padding: 2.5rem; height: 100%; }
.area-box.compact { padding: 2.2rem; }
.area-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.area-box p { color: var(--text-muted); line-height: 1.7; margin: 0; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.city-tag { background: white; border: 1px solid rgba(0,176,80,0.16); color: var(--text); border-radius: 50px; padding: 0.55rem 0.95rem; font-size: 0.86rem; font-weight: 600; }
.city-tag.strong { background: var(--green); color: white; border-color: var(--green); }

.why-card { background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--border); height: 100%; transition: all 0.3s ease; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.why-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 52px; height: 52px; background: var(--green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.4rem; margin-bottom: 1.25rem; transition: background 0.3s, color 0.3s; }
.why-card:hover .why-icon { background: var(--green); color: white; }
.why-card h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* OFFER */
#offer { padding: 5rem 0; }
.offer-box { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 26px; padding: 3rem; color: white; position: relative; overflow: hidden; }
.offer-box::after { content: ''; position: absolute; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%); right: -120px; top: -160px; }
.offer-box h2 { font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; position: relative; z-index: 1; }
.offer-box p { color: rgba(255,255,255,0.88); max-width: 760px; line-height: 1.75; margin-bottom: 1.6rem; position: relative; z-index: 1; }
.btn-offer { background: white; color: var(--green-dark); position: relative; z-index: 1; }
.btn-offer:hover { color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

/* FAQ */
.accordion-item { background: white; border: 1px solid var(--border) !important; border-radius: 14px !important; overflow: hidden; margin-bottom: 0.75rem; }
.accordion-button { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.96rem; color: var(--dark) !important; background: white !important; padding: 1.25rem 1.5rem; box-shadow: none !important; border-radius: 14px !important; }
.accordion-button:not(.collapsed) { color: var(--green) !important; }
.accordion-button::after { filter: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b050'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.accordion-body { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; padding: 0 1.5rem 1.25rem; }

/* CONTACT */
.contact-section { padding-top: 6rem; }
.contact-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 3rem; backdrop-filter: blur(10px); }
.form-label { font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.form-control, .form-select { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: white; font-size: 0.92rem; padding: 0.82rem 1rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.form-select option { color: var(--dark); }
.form-control::placeholder { color: rgba(255,255,255,0.32); }
.form-control:focus, .form-select:focus { background: rgba(255,255,255,0.08); border-color: rgba(0,176,80,0.5); box-shadow: 0 0 0 3px rgba(0,176,80,0.12); color: white; outline: none; }
textarea.form-control { resize: vertical; min-height: 132px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.60); margin-bottom: 1rem; line-height: 1.55; }
.form-note a { color: #72e3a4; text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
button.btn-primary-rentlee { cursor: pointer; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { width: 42px; height: 42px; background: rgba(0,176,80,0.15); border: 1px solid rgba(0,176,80,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.2rem; }
.contact-info-value, .contact-info-value a { font-size: 0.92rem; color: rgba(255,255,255,0.86); font-weight: 600; text-decoration: none; }
.contact-info-value a:hover { color: #72e3a4; }
.trust-list { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-list p { color: rgba(255,255,255,0.58); font-size: 0.86rem; line-height: 1.65; margin-bottom: 0.65rem; }
.trust-list i { color: var(--green); margin-right: 0.35rem; }

/* LEGAL */
.legal-section { padding-top: 5rem; }
.legal-card { background: var(--cream); border: 1px solid var(--border); border-radius: 22px; padding: 3rem; max-width: 920px; margin: 0 auto; }
.legal-card h2 { font-size: 1.65rem; color: var(--dark); margin-top: 2rem; margin-bottom: .8rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--text-muted); line-height: 1.75; margin-bottom: .75rem; }
.legal-card a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }

/* FOOTER */
footer { background: var(--dark-2); color: rgba(255,255,255,0.42); padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; }
.footer-logo img { height: 36px; width: auto; opacity: 0.72; }
.footer-links { display: flex; gap: 1.25rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 0.8rem; line-height: 1.5; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.55; transform:scale(.82); } }
@keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(5px); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* RESPONSIVE */
@media (max-width: 991px) {
  .navbar .container { padding: 0.45rem 1rem; }
  .navbar-collapse { padding: .4rem 0 .8rem; }
  .nav-link { padding: 0.75rem 0 !important; }
  .nav-link::after { display: none; }
  .btn-nav-cta { display: inline-flex; width: fit-content; justify-content: center; padding: 0.75rem 1.2rem !important; margin-top: 0.5rem; }
  .hero, .page-hero.compact-hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero-scroll { display: none; }
  .about-img-grid { height: 360px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .section-white, .section-cream, .section-dark { padding: 4.5rem 0; }
  #offer { padding: 3.5rem 0; }
  .hero h1, .page-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-subtitle { font-size: 1.02rem; line-height: 1.65; }
  .hero-actions { margin-top: 2rem; }
  .hero-stats { gap: 1.35rem; margin-top: 2.5rem; padding-top: 1.6rem; }
  .hero-stat-number { font-size: 1.72rem; }
  .hero-stat-label { font-size: 0.70rem; }
  .section-title { font-size: clamp(2rem, 10vw, 3rem); }
  .section-subtitle { font-size: 1rem; }
  .about-img-grid { height: 300px; gap: .65rem; }
  .contact-wrap, .offer-box, .area-box, .info-panel, .legal-card { padding: 1.6rem; }
  .service-card-img { height: 210px; }
  .footer-links { gap: .85rem 1.1rem; }
}
@media (max-width: 575px) {
  .navbar-brand img { height: 46px; }
  .hero, .page-hero.compact-hero { padding: 7.2rem 0 3.5rem; }
  .hero-eyebrow { font-size: 0.66rem; letter-spacing: .08em; padding: .42rem .82rem; }
  .btn-primary-rentlee, .btn-ghost-rentlee, .btn-offer { width: 100%; padding: .92rem 1.2rem; }
  .hero-actions { width: 100%; }
  .hero-actions a { flex: 1 1 100%; }
  .hero-stats { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .section-white, .section-cream, .section-dark { padding: 3.6rem 0; }
  .about-img-grid { grid-template-columns: 1fr 1fr; height: 245px; }
  .city-tag { font-size: .8rem; padding: .48rem .78rem; }
  .contact-info { margin-top: 1rem; }
  .footer-copy { width: 100%; }
}

/* Bloque le déplacement horizontal sur mobile */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

/* Évite qu'un élément dépasse de l'écran */
section,
nav,
footer,
.container,
.row {
  max-width: 100%;
}

/* Sécurité pour les images */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Sur téléphone : autorise uniquement le scroll vertical */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    touch-action: pan-y;
  }
}
