:root {
  --rencon-orange: #FF4D00;
  --rencon-orange-gradient: linear-gradient(90deg, #E35A1F 0%, #FFA11D 100%);
  --rencon-dark: #2e2e2e;
  --rencon-text: #3a3a3a;
  --rencon-border: #c8c8c8;
  --rencon-bg-color: #f5f5f5;
  --line-bg: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 69px,
    rgba(0, 0, 0, 0.04) 69px,
    rgba(0, 0, 0, 0.04) 70px
  )
}

.btn-book,
.btn-quote,
.btn-see-reviews,
.btn-cta-quote,
.btn-contact-submit,
.btn-learn-more {
  border: 1.5px solid transparent;
  background-image: var(--rencon-orange-gradient), var(--rencon-orange-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--rencon-text);
  font-weight: 300;
  background: var(--rencon-bg-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1260px;
}

a {
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 1030;
  background: #fff;
}


/* ── Top bar ─────────────────────────────────────────────── */

.top-bar {
  padding: 14px 0 18px;
}

.top-bar-row {
  position: relative;
}

.top-nav {
  display: flex;
}

.top-nav__menu,
.mobile-nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav__menu {
  gap: 2rem;
}

.top-nav a {
  color: var(--rencon-text);
  transition: color 0.2s;
}

.top-nav a:hover,
.top-nav .current-menu-item > a,
.top-nav .current_page_item > a,
.top-nav .current-menu-ancestor > a {
  color: var(--rencon-orange);
}

.mobile-nav__menu {
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.mobile-nav .current-menu-item > a,
.mobile-nav .current_page_item > a,
.mobile-nav .current-menu-ancestor > a {
  color: var(--rencon-orange);
}

/* Mobile nav toggle + drawer */
.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1.5px solid var(--rencon-border);
  border-radius: 8px;
  background: #fff;
  color: var(--rencon-text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  border-color: var(--rencon-orange);
  color: var(--rencon-orange);
  outline: none;
}

.mobile-nav-collapse {
  margin-top: 0.75rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 0.25rem;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  display: block;
  padding: 0.65rem 0.25rem;
  color: var(--rencon-text);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: var(--rencon-orange);
  background: #fafafa;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--rencon-border);
  border-radius: 50px;
  color: var(--rencon-text);
  background: #fff;
  line-height: 1;
  transition: border-color 0.2s;
}

.btn-phone:hover {
  border-color: var(--rencon-orange);
  color: var(--rencon-text);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  transition: filter 0.2s;
}

.btn-book:hover {
  color: #fff;
  filter: brightness(1.08);
}

/* ── Orange brand bar ────────────────────────────────────── */

.brand-bar {
  background: #fff;
}

.brand-bar-inner {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: stretch;
  min-height: 46px;
}

.promo-segment,
.contact-segment {
  display: flex;
  align-items: center;
  background: var(--rencon-orange);
  color: #fff;
  min-height: 46px;
}

.promo-segment {
  padding-left: 2rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
}

.contact-segment {
  justify-content: flex-end;
  gap: 1.5rem;
  padding-right: 2rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

.promo-text {
  font-size: 0.78rem;
  line-height: 1.3;
  white-space: nowrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-size: 0.78rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.contact-item:hover {
  color: #fff;
  opacity: 0.85;
}

/* ── Centered logo (overlaps both bars) ──────────────────── */

.logo-block--desktop {
  position: absolute;
  left: 50%;
  top: calc(100% - 46px);
  transform: translate(-50%, -44%);
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.logo-block--mobile {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 120px;
  line-height: 0;
}

.logo-block--mobile img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

/* ── Hero banner ─────────────────────────────────────────── */

.hero {
  display: grid;
  position: relative;
  overflow: hidden;
  background: var(--rencon-bg-color) var(--line-bg);
}

.hero-bg {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
}

.hero-container {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  color: var(--rencon-dark);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem 1rem 1rem;
  width: fit-content;
  background: #fff;
  border-radius: 50px;
  border-left: 4px solid var(--rencon-orange);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.hero-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(239, 127, 26, 0.12);
  color: var(--rencon-orange);
}

.hero-feature-title {
  color: var(--rencon-dark);
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.hero-feature-text {
  color: #6b6b6b;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.review-badge {
  position: relative;
  left: 0;
  top: auto;
  transform: none;
  z-index: 5;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-badge-burst {
  position: absolute;
  inset: 0;
  background: #f0a500;
  clip-path: polygon(
    50% 0%, 61% 11%, 75% 5%, 80% 20%, 95% 25%, 88% 38%,
    100% 50%, 88% 62%, 95% 75%, 80% 80%, 75% 95%, 61% 89%,
    50% 100%, 39% 89%, 25% 95%, 20% 80%, 5% 75%, 12% 62%,
    0% 50%, 12% 38%, 5% 25%, 20% 20%, 25% 5%, 39% 11%
  );
  box-shadow: 0 0 0 5px #fff, 0 8px 24px rgba(0, 0, 0, 0.14);
}

.review-badge-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}

.review-stars {
  display: flex;
  gap: 1px;
  color: #f0a500;
  margin: 0.2rem 0;
}

.review-text {
  font-size: 0.62rem;
  color: var(--rencon-dark);
  margin: 0;
  line-height: 1.2;
  max-width: 80px;
}

/* ── Lifestyle section ─────────────────────────────────────── */

.lifestyle {
  background-color: var(--rencon-bg-color);
  background-image: var(--line-bg);
  padding: 4.5rem 0 3.5rem;
}

.lifestyle-arch-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding-bottom: 70px;
}

.lifestyle-arch-img {
  display: block;
  width: 100%;
  height: auto;
}

.seal-badge-img {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translate(-50%, 50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.lifestyle-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.18;
  color: var(--rencon-dark);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.lifestyle-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #6b6b6b;
  margin-bottom: 1.75rem;
  max-width: 460px;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: filter 0.2s;
}

.btn-quote:hover {
  color: #fff;
  filter: brightness(1.08);
}

.lifestyle-side-images {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex-flow: wrap;
  max-width: 300px;
  margin-left: auto;
  justify-content: center;
}

/* ── Homepage — family values & CEO quote ──────────────────── */

.home-family-values {
  background: var(--rencon-bg-color);
}

.home-family-values__card {
  padding: 1.5rem 1.5rem 1.75rem;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.home-family-values__copy {
  position: relative;
  padding: 0.5rem 0.75rem 0.5rem 0;
}

.home-family-values__arc {
  position: absolute;
  left: -38%;
  top: 50%;
  z-index: 0;
  aspect-ratio: 1;
  background: radial-gradient(circle at 15% 50%, #ffffff 0%, #ededed69 55%, #e8e8e8 100%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-family-values__copy-inner {
  position: relative;
  z-index: 1;
}

.home-family-values__accent {
  color: var(--rencon-orange);
}

.home-family-values__title {
  color: var(--rencon-dark);
}

.home-family-values__text {
  line-height: 1.7;
}

.home-family-values__visual {
  position: relative;
}

.home-family-values__logo {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  width: 118px;
  height: auto;
  transform: translate(-42%, -50%);
  pointer-events: none;
}

.home-family-values__media {
  position: relative;
  margin-left: auto;
  max-width: 92%;
}

.home-family-values__image {
  display: block;
  border-radius: 12px;
}

.home-family-values__callout {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 0.85rem 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

.home-family-values__callout-title {
  color: var(--rencon-orange);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-family-values__callout-text {
  color: #6b6b6b;
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-family-values__callout--quality {
  top: 8%;
  left: -24%;
}

.home-family-values__callout--experience {
  bottom: 14%;
  left: 8%;
}

.home-family-values__callout--owned {
  top: 42%;
  right: 2%;
}

.home-ceo-quote {
  padding: 0 0 1.25rem;
  background: var(--rencon-bg-color);
}

.home-ceo-quote__panel {
  padding: 1.5rem 1.75rem 1.5rem 1.5rem;
  background: #343a40;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}

.home-ceo-quote__portrait {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
}

.home-ceo-quote__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  object-fit: contain;
}

.home-ceo-quote__text {
  margin: 0;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.home-ceo-quote__attribution {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
}

.home-ceo-quote__dash {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--rencon-orange);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .home-family-values__card {
    padding: 1.75rem 2rem 2rem;
  }

  .home-family-values__copy {
    padding: 0.75rem 1rem 0.75rem 0;
    min-height: 280px;
    display: flex;
    align-items: center;
  }

  .home-family-values__arc {
    left: -50%;
    width: 800px;
    height: 800px;
  }

  .home-family-values__media {
    max-width: 80%;
  }

  .home-family-values__logo {
    width: 132px;
    transform: translate(-48%, -50%);
  }

  .home-ceo-quote__panel {
    padding: 1.75rem 2.25rem 1.75rem 2rem;
  }

}

/* ── Services section ──────────────────────────────────────── */

.services {
  background: #f5f5f5;
}

.services-header {
  padding: 3.5rem 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-heading {
  line-height: 1.25;
  color: var(--rencon-dark);
  max-width: 820px;
  margin: 0 auto 3rem;
}

.services-body {
  background: var(--rencon-orange);
  border-radius: 100px 100px 0 0;
  padding: 0 0 4rem;
  margin-top: 10rem;
  position: relative;
  z-index: 0;
}

.services-body--alt {
  background: url(../img/two-tone-bg.webp) center top / cover no-repeat !important;
}

.services-grid {
  display: grid;
  gap: 2.5rem 1.5rem;
}

.services-grid-top {
  grid-template-columns: repeat(4, 1fr);
  transform: translateY(-105px);
  margin-bottom: -45px;
}

.services-grid-bottom {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin: 2rem auto 0;
  padding-top: 1rem;
}

.service-card {
  text-align: center;
}

.service-card-visual {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.service-card-img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  width: 300px;
  position: relative;
  z-index: 2;
}

.service-card-title {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 0.55rem 1.35rem;
  width: 212px;
  background: #fff;
  color: var(--rencon-dark);
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-text {
  margin: 0 auto;
  padding: 0;
  color: #fff;
  line-height: 1.45;
  max-width: 160px;
}

.services-tagline {
  margin: 3rem 0 0;
  text-align: center;
  color: #fff;
  font-style: italic;
  opacity: 0.95;
}

/* ── Testimonials section ──────────────────────────────────── */

.testimonials {
  background: white;
}

.testimonials-panel {
  background: #fff;
  border-radius: 80px 80px 0 0;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.testimonials-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--rencon-dark);
  margin: 0;
}

.testimonials-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: #f5f5f5;
  border-radius: 50px;
}

.testimonials-summary-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.testimonials-summary-google {
  flex-shrink: 0;
}

.testimonials-summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonials-summary-count {
  color: var(--rencon-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.testimonials-summary-stars {
  display: flex;
  gap: 1px;
  color: #f0a500;
}

.btn-see-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.75rem 1.35rem;
  border-radius: 50px;
  color: #fff;
  white-space: nowrap;
  transition: filter 0.2s;
}

.btn-see-reviews:hover {
  color: #fff;
  filter: brightness(1.08);
}

.testimonials-slider-wrap {
  padding: 0 1.5rem;
}

.testimonials-slider .slick-list {
  overflow: visible;
}

.testimonials-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.testimonial-slide {
  padding: 0 0.6rem;
  height: auto;
}

.testimonial-card {
  height: 100%;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-avatar-img {
  object-fit: cover;
}

.testimonial-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.testimonial-name {
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--rencon-dark);
  margin: 0 0 0.15rem;
}

.testimonial-date {
  display: block;
  font-size: 0.78rem;
  color: #888;
}

.testimonial-google {
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f0a500;
  margin-bottom: 0.65rem;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #555;
  margin: 0;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Slick dots */
.testimonials-slider-wrap .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 2rem;
  display: flex !important;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.testimonials-slider-wrap .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.testimonials-slider-wrap .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  font-size: 0;
  line-height: 0;
}

.testimonials-slider-wrap .slick-dots li button::before {
  display: none;
}

.testimonials-slider-wrap .slick-dots li.slick-active button {
  background: var(--rencon-orange);
}

/* ── Why choose + CTA section ────────────────────────────── */

.why-choose {
  background: #fff;
  padding-bottom: 2rem;
}

.why-choose-visual {
  position: relative;
}

.why-choose-bg {
  display: block;
  width: 100%;
  height: auto;
}

.why-choose-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-choose-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 15rem 0 1.5rem;
}

.why-choose-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  color: var(--rencon-dark);
  margin: 0 auto 1.5rem;
  max-width: 640px;
  flex-shrink: 0;
}

.why-choose-features {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-content: center;
}

.why-choose-pin {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 320px;
  width: 100%;
}

.why-choose-pin--hotspot-end {
  flex-direction: row;
}

.why-choose-pin--hotspot-start {
  flex-direction: row;
}

.why-choose-hotspot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.8);
}

.why-choose-card-body {
  max-width: 240px;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.why-choose-card-title {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--rencon-dark);
  margin: 0 0 0.35rem;
}

.why-choose-card-text {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #555;
  margin: 0;
}

/* CTA pill — separate from bathroom image */
.why-choose-cta-wrap {
  position: relative;
  z-index: 2;
  padding: 0 1.25rem;
}

.why-choose-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 20rem;
  text-align: center;
  border-radius: 9999px;
  color: #fff;
  background: url('../img/build-space-bg.webp') center / cover no-repeat;
  background-color: #1c1c1c;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.why-choose-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem;
}

.why-choose-cta-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 1.75rem;
}

.why-choose-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.btn-cta-phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-cta-quote {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: filter 0.2s;
}

.btn-cta-quote:hover {
  color: #fff;
  filter: brightness(1.08);
}

/* ── Renovation process section ──────────────────────────── */

.process {
  background: var(--rencon-bg-color);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.process-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: clamp(380px, 42vw, 500px);
  padding: 10rem 0 5rem;
}

.process-panel-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: url("../img/process-bg.webp") center right / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.process-panel .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: inherit;
}

.process-title {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 42%;
  max-width: 420px;
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  color: var(--rencon-dark);
  margin: 0;
  padding: 0.25rem 0 0;
}

.process-cards {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
}

.process-card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.process-step {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--rencon-orange);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.75rem;
}

.process-card-title {
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--rencon-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.process-card-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* ── Contact section ─────────────────────────────────────── */

.contact {
  background: var(--rencon-bg-color);
  padding: 4rem 0 5rem;
}

.contact-card {
  padding: 2rem 2rem 2.25rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-card-info {
  height: 100%;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.contact-aside .contact-card {
  height: auto;
}

.contact-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin-bottom: 1.75rem;
  padding: 2rem 1.5rem;
  background: #ececec;
  border-radius: 16px;
}

.contact-brand-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
}

.contact-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--rencon-dark);
  margin: 0 0 1.5rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  padding: 0.65rem 1rem;
  background: #f3f3f3;
  border-radius: 50px;
  color: var(--rencon-orange);
  line-height: 1.3;
  transition: background 0.2s;
}

a.contact-pill:hover {
  background: #ebebeb;
  color: var(--rencon-orange);
}

.contact-pill iconify-icon {
  flex-shrink: 0;
  color: var(--rencon-orange);
}

.contact-form-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  color: var(--rencon-dark);
  margin: 0 0 0.75rem;
}

.contact-form-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
  max-width: 520px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-field {
  position: relative;
  margin-bottom: 0.8rem;
}

.contact-field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  z-index: 1;
  pointer-events: none;
}

.contact-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  border: none;
  border-radius: 50px;
  background: #f3f3f3;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--rencon-dark);
  outline: none;
  transition: background 0.2s;
}

.contact-input::placeholder {
  color: #999;
}

.contact-input:focus {
  background: #ebebeb;
}

.contact-field-select .contact-input {
  padding-left: 1rem;
  padding-right: 2.5rem;
  appearance: none;
  cursor: pointer;
}

.contact-select-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s;
}

.btn-contact-submit:hover {
  filter: brightness(1.08);
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  background: #2a2a2a;
}

.footer-gallery-section {
  overflow: hidden;
  background: var(--rencon-bg-color);
}

.footer-gallery {
  overflow: hidden;
  background: var(--rencon-bg-color);
}

.footer-gallery-row + .footer-gallery-row {
  margin-top: 0;
}

.footer-gallery-row--reverse {
  transform: scaleX(-1);
}

.footer-gallery-row--reverse .footer-gallery-slide {
  transform: scaleX(-1);
}

.footer-gallery-slider .slick-list {
  overflow: hidden;
}

.footer-gallery-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.footer-gallery-slide {
  height: 220px;
  width: auto;
}

.footer-gallery-slide img {
  display: block;
  height: 220px;
  width: auto;
  max-width: none;
}

.footer-gallery-slider .slick-slide {
  width: auto;
  margin: 0;
}

.footer-gallery-slider .slick-slide > div {
  line-height: 0;
}

.footer-main {
  background: #2a2a2a;
}

.footer-main-brand {
  width: 200px;
}

.footer-main-members {
  width: 200px;
}

.site-footer .footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .footer-link:hover {
  color: var(--rencon-orange);
}

.footer-logo-img {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer .footer-icon {
  color: var(--rencon-orange);
  margin-top: 0.15rem;
}

/* ── Inner page header (reusable) ─────────────────────────── */

.page-header {
  position: relative;
  padding: 3.5rem 1rem 3rem;
  text-align: center;
  overflow: hidden;
  background: var(--rencon-bg-color);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.page-header-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 77, 0, 0.14);
  color: var(--rencon-orange);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 50px;
}

.page-header-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  color: var(--rencon-dark);
}

.page-header-subtitle {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6b6b6b;
}

.contact-us-kicker {
  color: var(--rencon-orange);
}

.about-us-side-img {
  display: block;
  width: 100%;
  max-width: 420px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.about-story-quote {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 5px solid var(--rencon-orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--rencon-dark);
}

.about-service-panel {
  min-height: 320px;
  overflow: hidden;
}

.about-service-panel__img {
  display: block;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-service-panel__overlay {
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  pointer-events: none;
}

.about-service-panel__num,
.about-service-panel__title {
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.about-service-panel__num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
}

.about-service-panel__title {
  max-width: 17.5rem;
}

.about-service-panel:hover .about-service-panel__overlay {
  background: rgba(0, 0, 0, 0.52);
}

/* About — Core Strength */
.about-core-strength {
  background: var(--rencon-bg-color);
}

.about-core-strength__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-core-strength__intro {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.about-core-strength__media {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
}

.about-core-strength__copy {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-left: auto;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-core-strength__pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--rencon-dark);
  white-space: nowrap;
}

.about-core-strength__pill iconify-icon {
  flex-shrink: 0;
  color: var(--rencon-orange);
}

.about-core-strength__pill--licensed {
  left: 6%;
  bottom: 18%;
}

.about-core-strength__pill--pricing {
  left: 24%;
  bottom: 40%;
}

.about-core-strength__pill--quality {
  left: 54%;
  top: 22%;
}

.about-core-strength__pill--design {
  right: 11%;
  bottom: 45%;
}

@media (min-width: 992px) {
  .about-core-strength__layout {
    position: relative;
    min-height: 520px;
    padding-top: 0.5rem;
  }

  .about-core-strength__intro {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    max-width: 38%;
    margin-bottom: 0;
  }

  .about-core-strength__media {
    margin: 0;
  }

  .about-core-strength__copy {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    max-width: 40%;
    margin-left: 0;
  }
}

/* SP Easy Accordion — FAQ section */
.faq-section .sp-easy-accordion,
.faq-section .sp-ea-one {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-section .ea-card {
  margin-bottom: 1rem;
  background: #fff !important;
  border: none !important;
  border-left: 5px solid var(--rencon-orange) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07) !important;
  overflow: hidden;
}

.faq-section .ea-card:last-child {
  margin-bottom: 0;
}

.faq-section .ea-header {
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none !important;
}

.faq-section .ea-header a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--rencon-dark) !important;
  text-decoration: none !important;
}

.faq-section .ea-header a:hover,
.faq-section .ea-header a:focus {
  color: var(--rencon-dark) !important;
  box-shadow: none !important;
}

.faq-section .ea-expand-icon {
  order: 2;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rencon-dark) !important;
}

.faq-section .sp-collapse,
.faq-section .spcollapse {
  border: none !important;
  background: transparent !important;
}

.faq-section .ea-body {
  padding: 0 1.25rem 1.15rem !important;
  background: transparent !important;
  border: none !important;
  color: #6b6b6b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-section .ea-body p {
  margin: 0;
}

/* ── Services page ─────────────────────────────────────────── */

.page-header--services .page-header-badge {
  background: var(--rencon-orange);
  color: #fff;
}

.services-stats {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
  padding-bottom: 2.5rem;
}

.services-stats__panel {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 2rem;
  background-color: var(--rencon-dark);
  background-image: url(../img/service-stats-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.services-stats__tagline {
  margin: 0;
  padding-left: 0.75rem;
  line-height: 1.35;
  color: #fff;
}

.services-stats__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  height: 100%;
}

.services-stats__item {
  flex: 1 1 0;
  padding: 0 1.25rem;
  text-align: center;
}

.services-stats__item + .services-stats__item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.services-stats__value {
  line-height: 1.1;
  color: var(--rencon-orange);
}

.services-stats__label {
  display: block;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.services--page .services-body {
  margin-top: 5rem;
}

.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card--link:hover .service-card-title {
  color: var(--rencon-orange);
}

.service-detail__kicker {
  margin: 0;
  color: var(--rencon-orange);
  letter-spacing: 0.04em;
}

.service-detail__title {
  color: var(--rencon-dark);
}

.service-detail__desc {
  max-width: 520px;
  line-height: 1.65;
}

.service-detail__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.service-detail__features li {
  flex: 0 0 auto;
}

.service-detail__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  line-height: 1.35;
  color: var(--rencon-dark);
}

.service-detail__check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rencon-orange);
  color: #fff;
}

.service-detail__img {
  display: block;
  border-radius: 72px 16px 72px 16px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  color: #fff;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: filter 0.2s;
}

.btn-learn-more:hover {
  color: #fff;
  filter: brightness(1.08);
}

.service-detail-duo {
  background: var(--rencon-bg-color);
}

.service-detail-card__img {
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 20px;
}

.service-detail-card__title {
  color: var(--rencon-dark);
}

.service-detail-duo .service-detail__desc {
  max-width: none;
}

.services-why-us {
  background: var(--rencon-bg-color);
  overflow: hidden;
}

.services-why-us__inner {
  display: grid;
  grid-template-columns: min(46vw, 640px) 1fr;
  align-items: center;
}

.services-why-us__content {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
  width: 100%;
  align-self: center;
  padding: 3rem clamp(1.5rem, 4vw, 4rem) 3rem calc(min(46vw, 640px) + clamp(1.5rem, 3vw, 2.5rem));
  background: #fff;
}

.services-why-us__media {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  align-self: center;
  line-height: 0;
}

.services-why-us__media img {
  display: block;
  width: 100%;
  height: auto;
}

.services-why-us__body {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}

.services-why-us__card {
  padding: 1.25rem 1.15rem;
  background: #e8e8e8;
  border-radius: 14px;
}

/* ── Service child page hero ───────────────────────────────── */

.service-hero {
  position: relative;
  overflow: visible;
  background: var(--rencon-bg-color);
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.service-hero__container {
  position: relative;
  z-index: 1;
}

.service-hero__pills {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 1rem;
  background: rgba(255, 77, 0, 0.14);
  color: var(--rencon-orange);
  letter-spacing: 0.06em;
  border-radius: 50px;
}

.service-hero__title {
  color: var(--rencon-dark);
  max-width: 520px;
}

.service-hero__subtext {
  max-width: 480px;
  line-height: 1.65;
}

.service-hero__content .btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-hero__visual-col {
  position: relative;
  overflow: visible;
}

.service-hero__visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: 0;
  padding: 2.5rem 0 4.5rem;
}

.service-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.service-hero__google {
  position: absolute;
  top: 6%;
  left: 4%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.service-hero__google-avatars {
  display: flex;
  align-items: center;
}

.service-hero__google-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
}

.service-hero__google-avatars .service-hero__google-avatar:first-child {
  margin-left: 0;
}

.service-hero__google-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.service-hero__google-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
}

.service-hero__google-score {
  color: var(--rencon-dark);
}

.service-hero__google-star {
  color: var(--rencon-orange);
}

.service-hero__google-label {
  color: #6b6b6b;
}

.service-hero__card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 260px;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.service-hero__card--quality {
  top: 12%;
  right: -1rem;
}

.service-hero__card--licensed {
    bottom: 3rem;
  left: 0;
}

.service-hero__card-icon {
  flex-shrink: 0;
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.service-hero__card-body {
  min-width: 0;
}

.service-hero__card-title {
  color: var(--rencon-dark);
  line-height: 1.25;
}

.service-hero__seal {
  position: absolute;
  right: 2%;
  bottom: 3rem;
  z-index: 4;
  width: 130px;
  height: 130px;
  object-fit: contain;
}

/* ── Service page — section 1 ──────────────────────────────── */

.service-section-1 {
  background: var(--rencon-bg-color);
}

.service-section-1__visual {
  position: relative;
  line-height: 0;
}

.service-section-1__image {
  display: block;
  width: 100%;
  height: auto;
}

.service-section-1__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: min(420px, 42%);
  color: var(--rencon-dark);
}

.service-section-1__text-wrap {
  padding-top: 2.5rem;
}

.service-section-1__text {
  margin: 0 auto;
  line-height: 1.75;
}

.service-section-1__text p:last-child {
  margin-bottom: 0;
}

/* ── Service page — section 2 ──────────────────────────────── */

.service-section-2 {
  background: var(--rencon-bg-color);
}

.service-section-2__title {
  color: var(--rencon-dark);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.service-section-2__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.service-section-2__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  color: #fff;
  border-radius: 28px;
}

.service-section-2__card--dark {
  background: #333333 url("../img/black-starred.png") center / cover no-repeat;
}

.service-section-2__card--green {
  background: #4F9904;
}

.service-section-2__card--terracotta {
  background: #E35A1F;
}

.service-section-2__card--amber {
  background: #FF9601;
}

.service-section-2__card--tall {
  min-height: 360px;
}

.service-section-2__card--mid {
  min-height: 300px;
}

.service-section-2__card--short {
  min-height: 250px;
}

.service-section-2__card-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  flex: 1 1 auto;
}

.service-section-2__card-icon {
  display: block;
  object-fit: contain;
}

.service-section-2__card-copy {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
}

.service-section-2__card--no-icon .service-section-2__card-copy {
  margin-top: auto;
}

.service-section-2__card-title,
.service-section-2__card-text {
  position: relative;
  z-index: 1;
}

.service-section-2__card-text {
  line-height: 1.55;
  opacity: 0.95;
}

/* ── Service page — section 3 ──────────────────────────────── */

.service-section-3 {
  background: var(--rencon-bg-color);
}

.service-section-3__title {
  color: var(--rencon-dark);
}

.service-section-3__description {
  line-height: 1.65;
}

.service-section-3__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-section-3__row {
  min-height: 320px;
}

.service-section-3__content {
  padding: 0;
  background: var(--rencon-bg-color);
}

.service-section-3__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  text-align: center;
}

.service-section-3__feature-title {
  color: var(--rencon-dark);
}

.service-section-3__feature-subtext {
  line-height: 1.6;
}

.service-section-3__media {
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.service-section-3__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-section-3__image.rounded-end {
  border-radius: 0 32px 32px 0;
}

.service-section-3__image.rounded-start {
  border-radius: 32px 0 0 32px;
}

/* ── Service page — section 4 (process) ────────────────────── */

.service-section-4 {
  background: var(--rencon-bg-color);
}

.service-section-4__panel {
  background-image: url("../img/service-process-bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  min-height: clamp(460px, 38vw, 540px);
  padding: 3rem 0 2.5rem;
}

.service-section-4__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-section-4__step-num {
  flex-shrink: 0;
  min-width: 3rem;
  color: #ffa11d;
}

.service-section-4__step-text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.service-section-4__description {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 520px;
}

.service-page-cta-overlap {
  margin-top: -9rem;
}

/* ── Gallery page pills ────────────────────────────────────── */

.gallery-pills__link {
  color: var(--rencon-dark);
  transition: background-color 0.2s, color 0.2s;
}

.gallery-pills__link:hover,
.gallery-pills__link.is-active {
  color: #fff;
  background: var(--rencon-orange);
  border-radius: 15px;
}
