: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 {
  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);
  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;
  gap: 2rem;
}

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

.top-nav a:hover {
  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);
  font-size: 0.95rem;
  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);
  font-size: 0.85rem;
  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;
  font-size: 0.85rem;
  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: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  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 {
  font-size: 0.95rem;
  color: var(--rencon-dark);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.hero-feature-text {
  font-size: 0.82rem;
  color: #6b6b6b;
  margin: 0;
  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;
}

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

.services {
  background: #f5f5f5;
}

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

.services-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  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-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;
  width: 210px;
  height: 210px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  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: 170px;
  background: #fff;
  color: var(--rencon-dark);
  font-size: 0.92rem;
  line-height: 1.2;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.testimonials {
  background: var(--rencon-orange);
  padding: 0 0 3rem;
}

.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;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.65rem 0.65rem 1.25rem;
  background: #f5f5f5;
  border-radius: 50px;
}

.testimonials-summary-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.testimonials-summary-count {
  font-size: 0.85rem;
  color: var(--rencon-dark);
  white-space: nowrap;
}

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

.btn-see-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  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;
  -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;
  margin-top: -150px;
  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;
}

.contact-field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  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;
}
