/* ============================================================
   Harmonie Renovation — harmonie-renovation.com
   Design unique — Prefix: hr-
   Palette: bleu ardoise + or chaud + beige lin
   Fonts: Playfair Display + Lato
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #3A3A3A;
  background: #FFFDF9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button { color: inherit; font-weight: inherit; font-size: inherit; font-family: inherit; border: none; cursor: pointer; background: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2B3A4E;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
table { border-collapse: collapse; display: block; overflow-x: auto; width: 100%; }

/* === CUSTOM PROPERTIES === */
:root {
  --hr-primary: #2B3A4E;
  --hr-primary-light: #3D5068;
  --hr-accent: #D4A853;
  --hr-accent-dark: #B8912F;
  --hr-beige: #F7F3ED;
  --hr-cream: #FFFDF9;
  --hr-dark: #1C2636;
  --hr-text: #3A3A3A;
  --hr-text-light: #6B7280;
  --hr-white: #FFFFFF;
  --hr-border: #E5E0D8;
  --hr-success: #2E7D5B;
  --hr-shadow: 0 2px 16px rgba(43,58,78,0.07);
  --hr-shadow-lg: 0 8px 40px rgba(43,58,78,0.12);
  --hr-shadow-accent: 0 4px 20px rgba(212,168,83,0.25);
  --hr-radius: 4px;
  --hr-radius-lg: 8px;
  --hr-transition: 0.25s ease;
  --hr-max-width: 1180px;
}

/* === UTILITY === */
.hr-container { max-width: var(--hr-max-width); margin: 0 auto; padding: 0 1.5rem; }
.hr-section { padding: 5rem 0; }
.hr-section-beige { background: var(--hr-beige); }
.hr-section-dark { background: var(--hr-dark); color: var(--hr-white); }
.hr-section-dark h2, .hr-section-dark h3 { color: var(--hr-white); }
.hr-text-center { text-align: center; }
.hr-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hr-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hr-accent);
  margin-bottom: 0.75rem;
}

/* === HEADER (sticky, NOT fixed — different from airzeau) === */
.hr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--hr-white);
  border-bottom: 1px solid var(--hr-border);
  transition: box-shadow var(--hr-transition);
}
.hr-header.scrolled {
  box-shadow: var(--hr-shadow);
  border-bottom-color: transparent;
}
.hr-header-top {
  background: var(--hr-primary);
  color: var(--hr-white);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.hr-header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--hr-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hr-header-top a { color: var(--hr-accent); font-weight: 700; }
.hr-header-top a:hover { text-decoration: underline; }
.hr-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--hr-max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}
.hr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hr-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--hr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hr-white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.hr-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--hr-primary);
  line-height: 1.15;
}
.hr-logo-text small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--hr-text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* === NAV === */
.hr-nav { display: flex; align-items: center; gap: 0; }
.hr-nav-link {
  display: block;
  padding: 0.6rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hr-primary);
  transition: color var(--hr-transition);
  position: relative;
}
.hr-nav-link:hover { color: var(--hr-accent); }
.hr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--hr-accent);
  transform: scaleX(0);
  transition: transform var(--hr-transition);
}
.hr-nav-link:hover::after { transform: scaleX(1); }

/* Dropdown */
.hr-dropdown { position: relative; }
.hr-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hr-primary);
  cursor: pointer;
  transition: color var(--hr-transition);
}
.hr-dropdown-trigger:hover { color: var(--hr-accent); }
.hr-dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--hr-transition);
}
.hr-dropdown.open .hr-dropdown-arrow { transform: rotate(180deg); }
.hr-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-top: 3px solid var(--hr-accent);
  box-shadow: var(--hr-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--hr-transition);
  z-index: 100;
}
.hr-dropdown.open .hr-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hr-dropdown-item {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  color: var(--hr-text);
  border-bottom: 1px solid var(--hr-beige);
  transition: all var(--hr-transition);
}
.hr-dropdown-item:last-child { border-bottom: none; }
.hr-dropdown-item:hover {
  background: var(--hr-beige);
  color: var(--hr-accent-dark);
  padding-left: 1.5rem;
}

/* CTA header */
.hr-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--hr-accent);
  color: var(--hr-white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--hr-radius);
  transition: all var(--hr-transition);
}
.hr-header-cta:hover {
  background: var(--hr-accent-dark);
  box-shadow: var(--hr-shadow-accent);
}

/* Burger mobile */
.hr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
  cursor: pointer;
}
.hr-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--hr-primary);
  transition: all var(--hr-transition);
  border-radius: 1px;
}
.hr-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hr-burger.open span:nth-child(2) { opacity: 0; }
.hr-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hr-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(160deg, var(--hr-primary) 0%, var(--hr-dark) 100%);
  overflow: hidden;
}
.hr-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--hr-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.hr-hero h1 {
  color: var(--hr-white);
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}
.hr-hero h1 span { color: var(--hr-accent); }
.hr-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hr-hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: var(--hr-white);
  font-size: 0.85rem;
  font-weight: 600;
}
.hr-hero-badge svg { width: 16px; height: 16px; fill: var(--hr-accent); }
.hr-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hr-hero-img {
  position: relative;
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  box-shadow: var(--hr-shadow-lg);
  aspect-ratio: 4/3;
  background: var(--hr-primary-light);
}
.hr-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* === BUTTONS === */
.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--hr-radius);
  transition: all var(--hr-transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.hr-btn-primary {
  background: var(--hr-accent);
  color: var(--hr-white);
}
.hr-btn-primary:hover {
  background: var(--hr-accent-dark);
  box-shadow: var(--hr-shadow-accent);
  transform: translateY(-1px);
}
.hr-btn-outline {
  background: transparent;
  color: var(--hr-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.hr-btn-outline:hover {
  border-color: var(--hr-white);
  background: rgba(255,255,255,0.1);
}
.hr-btn-dark {
  background: var(--hr-primary);
  color: var(--hr-white);
}
.hr-btn-dark:hover {
  background: var(--hr-dark);
  transform: translateY(-1px);
}

/* === TRUST BAR === */
.hr-trust {
  padding: 2.5rem 0;
  background: var(--hr-white);
  border-bottom: 1px solid var(--hr-border);
}
.hr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.hr-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hr-trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hr-accent);
}
.hr-trust-text {
  font-size: 0.9rem;
  color: var(--hr-text-light);
  font-weight: 600;
}

/* === CARDS (service, zone, blog) === */
.hr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hr-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.hr-card {
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-left: 4px solid var(--hr-accent);
  border-radius: 0 var(--hr-radius-lg) var(--hr-radius-lg) 0;
  padding: 1.8rem;
  transition: all var(--hr-transition);
}
.hr-card:hover {
  box-shadow: var(--hr-shadow-lg);
  transform: translateY(-3px);
  border-left-color: var(--hr-primary);
}
.hr-card-icon {
  width: 48px;
  height: 48px;
  background: var(--hr-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--hr-accent);
  font-size: 1.4rem;
}
.hr-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.hr-card p { font-size: 0.92rem; color: var(--hr-text-light); margin-bottom: 1rem; }
.hr-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--hr-accent);
  transition: gap var(--hr-transition);
}
.hr-card-link:hover { gap: 0.6rem; color: var(--hr-accent-dark); }

/* Blog cards (different shape) */
.hr-blog-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hr-border);
  transition: all var(--hr-transition);
}
.hr-blog-card:hover {
  box-shadow: var(--hr-shadow-lg);
  transform: translateY(-3px);
}
.hr-blog-card-img {
  aspect-ratio: 16/9;
  background: var(--hr-beige);
  overflow: hidden;
}
.hr-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hr-blog-card-body { padding: 1.5rem; }
.hr-blog-card-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hr-accent);
  margin-bottom: 0.5rem;
}
.hr-blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.hr-blog-card p { font-size: 0.88rem; color: var(--hr-text-light); }

/* === SECTION INTRO === */
.hr-section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.hr-section-intro p {
  font-size: 1.05rem;
  color: var(--hr-text-light);
}

/* === CTA BAND === */
.hr-cta-band {
  padding: 4rem 0;
  background: var(--hr-primary);
  text-align: center;
}
.hr-cta-band h2 { color: var(--hr-white); margin-bottom: 0.75rem; }
.hr-cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }

/* === TESTIMONIALS === */
.hr-testimonial {
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius-lg);
  padding: 2rem;
  position: relative;
}
.hr-testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--hr-accent);
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
  opacity: 0.3;
}
.hr-testimonial-text {
  font-style: italic;
  color: var(--hr-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 0;
}
.hr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hr-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hr-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--hr-primary);
  font-size: 0.9rem;
}
.hr-testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hr-primary);
}
.hr-testimonial-role {
  font-size: 0.8rem;
  color: var(--hr-text-light);
}
.hr-testimonial-stars {
  color: var(--hr-accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* === FOOTER === */
.hr-footer {
  background: var(--hr-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.hr-footer h4 {
  color: var(--hr-white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.hr-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--hr-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hr-footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.hr-footer-links li { margin-bottom: 0.5rem; }
.hr-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--hr-transition);
}
.hr-footer-links a:hover { color: var(--hr-accent); }
.hr-footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  align-items: flex-start;
}
.hr-footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--hr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.hr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.82rem;
}
.hr-footer-bottom a { color: var(--hr-accent); }
.hr-footer-bottom a:hover { text-decoration: underline; }

/* === BREADCRUMB === */
.hr-breadcrumb {
  padding: 1rem 0;
  background: var(--hr-beige);
  border-bottom: 1px solid var(--hr-border);
}
.hr-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--hr-text-light);
  max-width: var(--hr-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}
.hr-breadcrumb-list a { color: var(--hr-primary); font-weight: 600; }
.hr-breadcrumb-list a:hover { color: var(--hr-accent); }
.hr-breadcrumb-sep { color: var(--hr-border); }

/* === PAGE HERO (sub-pages) === */
.hr-page-hero {
  padding: 3.5rem 0;
  background: var(--hr-primary);
  color: var(--hr-white);
}
.hr-page-hero h1 { color: var(--hr-white); margin-bottom: 0.75rem; }
.hr-page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 700px; }

/* === ARTICLE / SERVICE CONTENT === */
.hr-content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 3rem 0;
}
.hr-content {
  min-width: 0;
}
.hr-content h2 {
  font-size: 1.65rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--hr-beige);
}
.hr-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.hr-content p { line-height: 1.8; margin-bottom: 1.2rem; }
.hr-content ul, .hr-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
  line-height: 1.8;
}
.hr-content ol { list-style: decimal; }
.hr-content li { margin-bottom: 0.4rem; }
.hr-content table {
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.hr-content table th, .hr-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--hr-border);
  text-align: left;
}
.hr-content table th {
  background: var(--hr-primary);
  color: var(--hr-white);
  font-weight: 700;
}
.hr-content table tr:nth-child(even) { background: var(--hr-beige); }
.hr-content blockquote {
  border-left: 4px solid var(--hr-accent);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--hr-beige);
  border-radius: 0 var(--hr-radius-lg) var(--hr-radius-lg) 0;
  font-style: italic;
  color: var(--hr-primary);
}
.hr-content img {
  border-radius: var(--hr-radius-lg);
  margin: 1.5rem 0;
}
.hr-content a {
  color: var(--hr-accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212,168,83,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--hr-transition);
}
.hr-content a:hover { text-decoration-color: var(--hr-accent); }

/* Info box */
.hr-info-box {
  padding: 1.5rem;
  border-radius: var(--hr-radius-lg);
  margin: 1.5rem 0;
  border: 1px solid var(--hr-border);
}
.hr-info-box-tip { background: #EFF6FF; border-color: #93C5FD; }
.hr-info-box-warn { background: #FFFBEB; border-color: #FCD34D; }
.hr-info-box-success { background: #ECFDF5; border-color: #6EE7B7; }
.hr-info-box strong { display: block; margin-bottom: 0.5rem; }

/* === SIDEBAR === */
.hr-sidebar { position: sticky; top: 6rem; }
.hr-sidebar-block {
  background: var(--hr-beige);
  border-radius: var(--hr-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.hr-sidebar-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--hr-accent);
}
.hr-sidebar-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--hr-text);
  border-bottom: 1px solid var(--hr-border);
  transition: all var(--hr-transition);
}
.hr-sidebar-link:last-child { border-bottom: none; }
.hr-sidebar-link:hover { color: var(--hr-accent); padding-left: 0.5rem; }

.hr-sidebar-cta {
  background: var(--hr-primary);
  color: var(--hr-white);
  border-radius: var(--hr-radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.hr-sidebar-cta h4 { color: var(--hr-white); border-bottom-color: var(--hr-accent); }
.hr-sidebar-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

/* === FORM === */
.hr-form-group { margin-bottom: 1.25rem; }
.hr-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hr-primary);
  margin-bottom: 0.4rem;
}
.hr-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  background: var(--hr-white);
  transition: border-color var(--hr-transition);
}
.hr-form-control:focus {
  outline: none;
  border-color: var(--hr-accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
textarea.hr-form-control { min-height: 120px; resize: vertical; }
select.hr-form-control { appearance: none; cursor: pointer; }

/* === SIMULATOR === */
.hr-simulator {
  background: var(--hr-white);
  border: 2px solid var(--hr-border);
  border-radius: var(--hr-radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.hr-simulator h3 { text-align: center; margin-bottom: 1.5rem; }
.hr-range-group { margin-bottom: 1.5rem; }
.hr-range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.hr-range-label { font-weight: 700; font-size: 0.9rem; }
.hr-range-value { font-weight: 700; color: var(--hr-accent); font-size: 0.9rem; }
.hr-range-input {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: var(--hr-beige);
  border-radius: 3px;
  outline: none;
}
.hr-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hr-accent);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(212,168,83,0.3);
}
.hr-result-box {
  background: var(--hr-beige);
  border-radius: var(--hr-radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.hr-result-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hr-accent);
  margin-bottom: 0.25rem;
}
.hr-result-label { font-size: 0.88rem; color: var(--hr-text-light); }

/* === MAP === */
.hr-map {
  width: 100%;
  height: 350px;
  border-radius: var(--hr-radius-lg);
  border: 1px solid var(--hr-border);
}

/* === STICKY CTA MOBILE === */
.hr-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--hr-accent);
  padding: 0.75rem 1.5rem;
  text-align: center;
}
.hr-sticky-cta a {
  color: var(--hr-white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* === FAQ === */
.hr-faq-item {
  border-bottom: 1px solid var(--hr-border);
}
.hr-faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hr-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--hr-transition);
}
.hr-faq-question:hover { color: var(--hr-accent); }
.hr-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.hr-faq-icon::before, .hr-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--hr-transition);
}
.hr-faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.hr-faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.hr-faq-item.open .hr-faq-icon::after { transform: rotate(90deg); }
.hr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hr-faq-answer-inner {
  padding: 0 0 1.2rem;
  color: var(--hr-text-light);
  line-height: 1.7;
}

/* === REVIEWS PAGE === */
.hr-review-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--hr-beige);
  border-radius: var(--hr-radius-lg);
  margin-bottom: 2rem;
}
.hr-review-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--hr-accent);
  line-height: 1;
}
.hr-review-stars { color: var(--hr-accent); font-size: 1.3rem; margin-bottom: 0.25rem; }

/* === DATA REVEAL ANIMATION === */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hr-content-wrap { grid-template-columns: 1fr; }
  .hr-sidebar { position: static; }
  .hr-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hr-hero { padding: 3rem 0; }
  .hr-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hr-hero h1 { font-size: 2rem; }
  .hr-hero-badges { justify-content: center; }
  .hr-hero-actions { justify-content: center; }
  .hr-hero-img { max-width: 400px; margin: 0 auto; }
  .hr-section { padding: 3rem 0; }
  .hr-grid-3 { grid-template-columns: 1fr; }
  .hr-grid-2 { grid-template-columns: 1fr; }
  .hr-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hr-header-top { display: none; }
  .hr-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--hr-white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--hr-shadow-lg);
    transition: right var(--hr-transition);
    overflow-y: auto;
    align-items: stretch;
  }
  .hr-nav.open { right: 0; }
  .hr-nav-link { padding: 0.8rem 0; border-bottom: 1px solid var(--hr-beige); font-size: 1rem; }
  .hr-dropdown-trigger { padding: 0.8rem 0; border-bottom: 1px solid var(--hr-beige); font-size: 1rem; }
  .hr-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
  }
  .hr-dropdown.open .hr-dropdown-menu { display: block; }
  .hr-dropdown-item { padding-left: 1.5rem; }
  .hr-burger { display: flex; }
  .hr-header-cta-desktop { display: none; }
  .hr-sticky-cta { display: block; }
  .hr-footer-grid { grid-template-columns: 1fr; }
  .hr-review-summary { flex-direction: column; text-align: center; }
  .hr-simulator { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hr-hero h1 { font-size: 1.7rem; }
  .hr-hero-badges { flex-direction: column; align-items: center; }
  .hr-hero-actions { flex-direction: column; }
  .hr-btn { width: 100%; justify-content: center; }
}
