/* =========================================================
   Branded Residences — Clean Studio Cards (final)
   Simple, professional, no broken overlays
   ========================================================= */

:root {
  --r7c-ink: #161311;
  --r7c-text: #3d3732;
  --r7c-muted: #7a726a;
  --r7c-line: #e8e2d9;
  --r7c-bg: #f7f3ee;
  --r7c-white: #ffffff;
  --r7c-gold: #a8895f;
  --r7c-gold-soft: #f0e8dc;
  --r7c-radius: 16px;
  --r7c-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- Kill broken old card styles ---------- */
body.r7-body .service-card,
body.r7-body .service-thumb,
body.r7-body .service-content,
body.r7-body .service-icon,
body.r7-body .project-inner,
body.r7-body .project-inner h3,
body.r7-body .team-item,
body.r7-body .team-thumb,
body.r7-body .team-social,
body.r7-body .blog-item,
body.r7-body .blog-thumb,
body.r7-body .blog-thumb .category,
body.r7-body .blog-content,
body.r7-body .testimonial-ref-card,
body.r7-body .r7-card,
body.r7-body .r7-service-card,
body.r7-body .r7-project-card,
body.r7-body .r7-team-card,
body.r7-body .r7-blog-card,
body.r7-body .r7-quote-card {
  all: unset;
  box-sizing: border-box;
}

/* Restore block display after all:unset on containers we still use accidentally */
body.r7-body .blog-section .row,
body.r7-body .service-section .row,
body.r7-body .team-section .row,
body.r7-body .project-section .row {
  display: flex;
  flex-wrap: wrap;
}

/* ---------- Shared card shell ---------- */
.r7c-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  background: var(--r7c-white) !important;
  border: 1px solid var(--r7c-line) !important;
  border-radius: var(--r7c-radius) !important;
  overflow: hidden !important;
  box-shadow: none !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 0.25s var(--r7c-ease), transform 0.25s var(--r7c-ease), box-shadow 0.25s var(--r7c-ease) !important;
}

a.r7c-card:hover,
article.r7c-card:hover {
  border-color: #d5cbbd !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 40px rgba(22, 19, 17, 0.08) !important;
}

.r7c-chip {
  display: inline-block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: var(--r7c-gold-soft) !important;
  color: var(--r7c-gold) !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

.r7c-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--r7c-gold) !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  text-transform: none !important;
  line-height: 1.2 !important;
}

.r7c-link:hover {
  color: var(--r7c-ink) !important;
}

.r7c-link::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s var(--r7c-ease);
}

.r7c-card:hover .r7c-link::after {
  transform: translateX(3px);
}

/* ---------- Service ---------- */
.r7c-service__media {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: #ece6de !important;
  text-decoration: none !important;
}

.r7c-service__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.45s var(--r7c-ease) !important;
}

.r7c-service:hover .r7c-service__media img {
  transform: scale(1.04) !important;
}

.r7c-service__body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 22px 22px 24px !important;
  gap: 0 !important;
}

.r7c-service__title {
  margin: 0 0 10px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: var(--r7c-ink) !important;
}

.r7c-service__title a {
  color: var(--r7c-ink) !important;
  text-decoration: none !important;
}

.r7c-service__title a:hover {
  color: var(--r7c-gold) !important;
}

.r7c-service__text {
  margin: 0 0 18px !important;
  color: var(--r7c-muted) !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  flex: 1 !important;
}

/* ---------- Project (image + white body below, no overlay mess) ---------- */
.r7c-project {
  display: flex !important;
  flex-direction: column !important;
}

.r7c-project__media {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: #1a1613 !important;
}

.r7c-project__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.45s var(--r7c-ease) !important;
}

.r7c-project:hover .r7c-project__media img {
  transform: scale(1.04) !important;
}

.r7c-project__body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 18px 20px 20px !important;
  background: var(--r7c-white) !important;
}

.r7c-project__title {
  margin: 0 0 12px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: var(--r7c-ink) !important;
}

/* Dark project sections still use white cards */
.project-section.bg-dark .r7c-project {
  background: #1f1b18 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.project-section.bg-dark .r7c-project__body {
  background: #1f1b18 !important;
}

.project-section.bg-dark .r7c-project__title {
  color: #fff !important;
}

.project-section.bg-dark .r7c-chip {
  background: rgba(184, 149, 108, 0.18) !important;
  color: #d4c2a8 !important;
}

.project-section.bg-dark .r7c-link {
  color: #d4c2a8 !important;
}

/* ---------- Team ---------- */
.r7c-team__media {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #ece6de !important;
}

.r7c-team__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.45s var(--r7c-ease) !important;
}

.r7c-team:hover .r7c-team__media img {
  transform: scale(1.03) !important;
}

.r7c-team__body {
  padding: 16px 18px 18px !important;
  text-align: left !important;
}

.r7c-team__body h3 {
  margin: 0 0 4px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  color: var(--r7c-ink) !important;
  line-height: 1.2 !important;
}

.r7c-team__body p {
  margin: 0 !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 13px !important;
  color: var(--r7c-gold) !important;
  font-weight: 500 !important;
}

/* ---------- Blog ---------- */
.r7c-blog__media {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: #ece6de !important;
  text-decoration: none !important;
}

.r7c-blog__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.45s var(--r7c-ease) !important;
}

.r7c-blog:hover .r7c-blog__media img {
  transform: scale(1.04) !important;
}

.r7c-blog__body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 20px 20px 22px !important;
}

.r7c-blog__title {
  margin: 0 0 10px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

.r7c-blog__title a {
  color: var(--r7c-ink) !important;
  text-decoration: none !important;
}

.r7c-blog__title a:hover {
  color: var(--r7c-gold) !important;
}

.r7c-blog__text {
  margin: 0 0 16px !important;
  color: var(--r7c-muted) !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  flex: 1 !important;
}

/* Legacy blog-item (if any remain) → force clean */
body.r7-body .blog-item {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  background: var(--r7c-white) !important;
  border: 1px solid var(--r7c-line) !important;
  border-radius: var(--r7c-radius) !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.r7-body .blog-thumb {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: #ece6de !important;
}

body.r7-body .blog-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  position: static !important;
}

body.r7-body .blog-thumb .category,
body.r7-body .blog-thumb .category a {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--r7c-ink) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
  display: inline-block !important;
  writing-mode: horizontal-tb !important;
  transform: none !important;
}

body.r7-body .blog-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 20px !important;
  background: var(--r7c-white) !important;
}

body.r7-body .blog-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

body.r7-body .blog-content h3 a {
  color: var(--r7c-ink) !important;
  text-decoration: none !important;
}

body.r7-body .blog-content p {
  color: var(--r7c-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  margin: 0 0 14px !important;
  flex: 1 !important;
}

body.r7-body .blog-content .read-more {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  color: var(--r7c-gold) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.03em !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* ---------- Testimonials ---------- */
.r7c-quote {
  padding: 24px 22px !important;
  min-height: 220px !important;
}

.r7c-quote__stars {
  display: flex !important;
  gap: 3px !important;
  list-style: none !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: var(--r7c-gold) !important;
  font-size: 11px !important;
}

.r7c-quote__text {
  margin: 0 0 18px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.25rem !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  color: var(--r7c-text) !important;
  flex: 1 !important;
}

.r7c-quote__person {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--r7c-line) !important;
}

.r7c-quote__person strong {
  display: block !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--r7c-ink) !important;
  margin-bottom: 2px !important;
}

.r7c-quote__person span {
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 12.5px !important;
  color: var(--r7c-muted) !important;
}

/* Legacy testimonial cards */
body.r7-body .testimonial-ref-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  padding: 24px 22px !important;
  background: var(--r7c-white) !important;
  border: 1px solid var(--r7c-line) !important;
  border-radius: var(--r7c-radius) !important;
  box-shadow: none !important;
}

body.r7-body .testimonial-ref-card p {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.2rem !important;
  font-style: italic !important;
  color: var(--r7c-text) !important;
  line-height: 1.5 !important;
}

/* ---------- Work process ---------- */
body.r7-body .work-pro-item {
  display: block !important;
  height: 100% !important;
  padding: 28px 22px !important;
  background: var(--r7c-white) !important;
  border: 1px solid var(--r7c-line) !important;
  border-radius: var(--r7c-radius) !important;
  text-align: left !important;
  box-shadow: none !important;
  transition: border-color 0.25s var(--r7c-ease), transform 0.25s var(--r7c-ease) !important;
}

body.r7-body .work-pro-item:hover {
  transform: translateY(-4px) !important;
  border-color: #d5cbbd !important;
}

body.r7-body .work-pro-item i {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--r7c-gold-soft) !important;
  color: var(--r7c-gold) !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
}

body.r7-body .work-pro-item h3 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  color: var(--r7c-ink) !important;
  margin: 0 0 8px !important;
}

body.r7-body .work-pro-item p {
  margin: 0 !important;
  color: var(--r7c-muted) !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
}

/* ---------- Pricing ---------- */
body.r7-body .pricing-item {
  height: 100% !important;
  padding: 28px 24px !important;
  background: var(--r7c-white) !important;
  border: 1px solid var(--r7c-line) !important;
  border-radius: var(--r7c-radius) !important;
  box-shadow: none !important;
}

/* ---------- Section surfaces ---------- */
body.r7-body .service-section.bg-grey,
body.r7-body .team-section.bg-grey,
body.r7-body .blog-section.bg-grey,
body.r7-body .project-section.bg-grey {
  background: var(--r7c-bg) !important;
}

body.r7-body .project-section.bg-dark {
  background: #14110f !important;
}

/* Equal height columns */
body.r7-body .service-section .row > [class*="col-"],
body.r7-body .team-section .row > [class*="col-"],
body.r7-body .blog-section .row > [class*="col-"],
body.r7-body .project-section .row > [class*="col-"],
body.r7-body .testimonials-section .row > [class*="col-"] {
  display: flex !important;
}

body.r7-body .service-section .row > [class*="col-"] > *,
body.r7-body .team-section .row > [class*="col-"] > *,
body.r7-body .blog-section .row > [class*="col-"] > *,
body.r7-body .project-section .row > [class*="col-"] > *,
body.r7-body .testimonials-section .row > [class*="col-"] > * {
  width: 100% !important;
}

/* Hide broken old absolute overlays if residual markup exists */
body.r7-body .project-inner > h3,
body.r7-body .r7-project-card__overlay,
body.r7-body .r7-service-card__index,
body.r7-body .r7-service-card__icon,
body.r7-body .service-icon {
  display: none !important;
}

/* Sidebar widgets clean */
body.r7-body .sidebar-wrap .widget-content {
  background: var(--r7c-white) !important;
  border: 1px solid var(--r7c-line) !important;
  border-radius: var(--r7c-radius) !important;
  padding: 20px !important;
  margin-bottom: 16px !important;
  box-shadow: none !important;
}

/* Kickers stay subtle */
.r7-kicker {
  display: inline-block !important;
  margin-bottom: 12px !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  background: var(--r7c-gold-soft) !important;
  color: var(--r7c-gold) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.r7-kicker--light {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #d4c2a8 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 767px) {
  .r7c-service__body,
  .r7c-blog__body,
  .r7c-project__body,
  .r7c-quote {
    padding: 18px 16px 20px !important;
  }

  .r7c-service__title,
  .r7c-blog__title,
  .r7c-project__title {
    font-size: 1.3rem !important;
  }
}

/* =========================================================
   PROJECT FEATURE CAROUSEL (homepage)
   Full-bleed image + clean gradient content
   ========================================================= */
.r7-projects-feature {
  background: #f7f3ee !important;
  padding-top: 100px !important;
  padding-bottom: 90px !important;
  overflow: hidden !important;
}

.r7-projects-feature .section-heading h2 {
  color: #161311 !important;
}

.r7-projects-feature .section-heading p {
  color: #7a726a !important;
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.r7-projects-feature__slider {
  padding-left: 24px !important;
  padding-right: 24px !important;
  max-width: 1400px;
  margin: 0 auto;
}

.r7-projects-feature .project-item {
  padding: 0 12px !important;
}

.r7c-project--feature {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 420px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  background: #1a1613 !important;
  border: 1px solid rgba(22, 19, 17, 0.08) !important;
  box-shadow: 0 18px 40px rgba(22, 19, 17, 0.1) !important;
  transition: transform 0.3s var(--r7c-ease), box-shadow 0.3s var(--r7c-ease) !important;
}

.r7c-project--feature:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 26px 50px rgba(22, 19, 17, 0.14) !important;
}

.r7c-project--feature .r7c-project__img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.55s var(--r7c-ease) !important;
}

.r7c-project--feature:hover .r7c-project__img {
  transform: scale(1.05) !important;
}

.r7c-project--feature .r7c-project__shade {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 7, 0.05) 30%,
    rgba(10, 8, 7, 0.55) 68%,
    rgba(10, 8, 7, 0.88) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.r7c-project--feature .r7c-project__content {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  padding: 22px 22px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

.r7c-chip--on-dark {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #f0e6d6 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  margin: 0 !important;
  backdrop-filter: blur(6px);
}

.r7c-project--feature .r7c-project__title {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.55rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  max-width: 100% !important;
}

.r7c-project--feature .r7c-project__cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 4px !important;
  color: #d9c4a4 !important;
  font-family: "Outfit", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.r7c-project--feature:hover .r7c-project__cta {
  color: #ffffff !important;
}

.r7c-project--feature .r7c-project__cta i {
  font-size: 11px !important;
  transition: transform 0.2s ease !important;
}

.r7c-project--feature:hover .r7c-project__cta i {
  transform: translateX(3px) !important;
}

/* Carousel chrome */
.r7-projects-feature .project-carousel .slick-arrow,
.r7-projects-feature .slick-arrow {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e8e2d9 !important;
  box-shadow: 0 8px 22px rgba(22, 19, 17, 0.1) !important;
  z-index: 5 !important;
  color: #161311 !important;
}

.r7-projects-feature .slick-prev {
  left: 8px !important;
}

.r7-projects-feature .slick-next {
  right: 8px !important;
}

.r7-projects-feature .slick-dots {
  bottom: -36px !important;
}

.r7-projects-feature .slick-dots li button:before {
  font-size: 9px !important;
  color: #b8aea2 !important;
  opacity: 1 !important;
}

.r7-projects-feature .slick-dots li.slick-active button:before {
  color: #a8895f !important;
}

/* =========================================================
   SERVICES — equal cards, pinned CTA
   ========================================================= */
.r7-services {
  background: #f7f3ee !important;
}

.r7-services__grid {
  align-items: stretch !important;
}

.r7-services .r7c-service {
  min-height: 100% !important;
  border-radius: 18px !important;
  border: 1px solid #e8e2d9 !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(22, 19, 17, 0.04) !important;
  overflow: hidden !important;
  transition: transform 0.28s var(--r7c-ease), box-shadow 0.28s var(--r7c-ease), border-color 0.28s var(--r7c-ease) !important;
}

.r7-services .r7c-service:hover {
  transform: translateY(-6px) !important;
  border-color: #d9cfc2 !important;
  box-shadow: 0 20px 44px rgba(22, 19, 17, 0.1) !important;
}

.r7-services .r7c-service__media {
  aspect-ratio: 16 / 9 !important;
  background: #ece6de !important;
}

.r7-services .r7c-service__body {
  padding: 22px 22px 24px !important;
  min-height: 190px !important;
}

.r7-services .r7c-service__title {
  font-size: 1.55rem !important;
  margin-bottom: 10px !important;
  min-height: 2.4em !important;
}

.r7-services .r7c-service__text {
  min-height: 4.6em !important;
  margin-bottom: 18px !important;
}

.r7-services .r7c-link {
  margin-top: auto !important;
}

/* Override old dark project section leftovers */
body.r7-body .project-section.bg-dark:not(.r7-projects-feature) {
  background: #14110f !important;
}

@media (max-width: 991px) {
  .r7c-project--feature {
    height: 360px !important;
  }
  .r7-services .r7c-service__body {
    min-height: 0 !important;
  }
  .r7-services .r7c-service__title,
  .r7-services .r7c-service__text {
    min-height: 0 !important;
  }
}

@media (max-width: 575px) {
  .r7c-project--feature {
    height: 320px !important;
  }
  .r7c-project--feature .r7c-project__title {
    font-size: 1.35rem !important;
  }
  .r7-projects-feature__slider {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* =========================================================
   ABOUT PAGE — full redesign
   ========================================================= */
.r7-about-page .r7a-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #14110f;
}

.r7a-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.r7a-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,12,11,.45) 0%, rgba(14,12,11,.55) 45%, rgba(14,12,11,.82) 100%);
}

.r7a-hero__inner {
  position: relative;
  z-index: 1;
  padding: 100px 0 72px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.r7a-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #d8c3a5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.r7a-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.r7a-hero p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.r7a-hero p strong {
  color: #fff;
  font-weight: 600;
}

/* Story */
.r7a-story {
  padding: 100px 0;
  background: #fbf8f4;
}

.r7a-story__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20,18,16,.1);
}

.r7a-story__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.r7a-story__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(20,18,16,.88);
  color: #fff;
  backdrop-filter: blur(8px);
}

.r7a-story__badge strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

.r7a-story__badge span {
  font-size: 12px;
  color: #d4c2a8;
  letter-spacing: .04em;
}

.r7a-story__copy h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 500;
  line-height: 1.18;
  color: #161311;
}

.r7a-story__copy > p {
  color: #6f675f;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.r7a-checklist {
  list-style: none;
  margin: 28px 0 30px;
  padding: 0;
}

.r7a-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid #e8e2d9;
}

.r7a-checklist li:last-child {
  border-bottom: 1px solid #e8e2d9;
}

.r7a-checklist i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0e8dc;
  color: #a8895f;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.r7a-checklist strong {
  display: block;
  color: #161311;
  font-size: .98rem;
  margin-bottom: 3px;
}

.r7a-checklist span {
  color: #7a726a;
  font-size: .92rem;
  line-height: 1.55;
}

.r7a-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.r7a-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e0d8cd;
  background: #fff;
  color: #161311;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.r7a-phone:hover {
  border-color: #a8895f;
  color: #a8895f;
}

.r7a-phone i {
  color: #a8895f;
}

/* Stats */
.r7a-stats {
  padding: 0 0 20px;
  background: #fbf8f4;
}

.r7a-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
  border-radius: 22px;
  background: #161311;
  box-shadow: 0 20px 50px rgba(20,18,16,.12);
}

.r7a-stat {
  text-align: center;
  padding: 12px 8px;
}

.r7a-stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.r7a-stat span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.4;
}

/* Focus cards */
.r7a-focus {
  padding: 90px 0;
  background: #f7f3ee;
}

.r7a-focus-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8e2d9;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.r7a-focus-card:hover {
  transform: translateY(-4px);
  border-color: #d9cfc2;
  box-shadow: 0 16px 40px rgba(20,18,16,.08);
}

.r7a-focus-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0e8dc;
  color: #a8895f;
  font-size: 18px;
  margin-bottom: 18px;
}

.r7a-focus-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #161311;
}

.r7a-focus-card p {
  margin: 0;
  color: #7a726a;
  font-size: .95rem;
  line-height: 1.65;
}

/* Process */
.r7a-process {
  padding: 90px 0;
  background: #fbf8f4;
}

.r7a-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.r7a-step {
  padding: 28px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8e2d9;
  height: 100%;
}

.r7a-step__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: #a8895f;
  line-height: 1;
}

.r7a-step h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #161311;
}

.r7a-step p {
  margin: 0;
  color: #7a726a;
  font-size: .93rem;
  line-height: 1.65;
}

/* Owner */
.r7a-owner {
  padding: 20px 0 90px;
  background: #fbf8f4;
}

.r7a-owner__card {
  display: grid;
  grid-template-columns: auto 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e8e2d9;
  box-shadow: 0 16px 40px rgba(20,18,16,.05);
}

.r7a-owner__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #b8956c, #8f734d);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.r7a-owner__copy h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #161311;
}

.r7a-owner__copy p {
  margin: 0;
  color: #6f675f;
  line-height: 1.7;
}

.r7a-owner__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r7a-owner__meta a,
.r7a-owner__meta span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3d3732;
  text-decoration: none;
  font-size: .94rem;
  line-height: 1.45;
}

.r7a-owner__meta a:hover {
  color: #a8895f;
}

.r7a-owner__meta i {
  color: #a8895f;
  margin-top: 3px;
  width: 14px;
}

/* CTA */
.r7a-cta {
  padding: 0 0 100px;
  background: #fbf8f4;
}

.r7a-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 42px;
  border-radius: 24px;
  background:
    linear-gradient(125deg, rgba(14,12,11,.9), rgba(14,12,11,.72)),
    url('../img/title-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.r7a-cta__box h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.r7a-cta__box p {
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 480px;
}

.r7a-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.r7a-cta__actions .default-btn {
  background: #b8956c !important;
  border-color: #b8956c !important;
  color: #fff !important;
}

.r7a-cta__actions .default-btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,.55) !important;
  color: #fff !important;
}

.r7a-cta__actions .default-btn-outline:hover {
  background: #fff !important;
  color: #161311 !important;
  border-color: #fff !important;
}

@media (max-width: 991px) {
  .r7a-hero__inner {
    padding: 80px 0 56px;
    text-align: left;
  }
  .r7a-story {
    padding: 70px 0;
  }
  .r7a-story__media img {
    height: 360px;
  }
  .r7a-stats__grid,
  .r7a-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7a-owner__card {
    grid-template-columns: 1fr;
  }
  .r7a-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }
}

@media (max-width: 575px) {
  .r7a-stats__grid,
  .r7a-process__grid {
    grid-template-columns: 1fr;
  }
  .r7a-story__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .r7a-phone,
  .r7a-story__actions .default-btn {
    justify-content: center;
    width: 100%;
  }
}

/* About hero: force light text over global h1 dark !important */
body.r7-body.about-page .r7a-hero h1,
body.r7-body.r7-about-page .r7a-hero h1,
.r7-about-page .r7a-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35) !important;
}

body.r7-body.about-page .r7a-hero p,
body.r7-body.r7-about-page .r7a-hero p,
.r7-about-page .r7a-hero p {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.r7-body.about-page .r7a-hero p strong,
body.r7-body.r7-about-page .r7a-hero p strong,
.r7-about-page .r7a-hero p strong {
  color: #ffffff !important;
  font-weight: 600 !important;
}

body.r7-body.about-page .r7a-eyebrow,
.r7-about-page .r7a-eyebrow {
  color: #e8d7bc !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Slightly lighter overlay so photo shows through */
.r7-about-page .r7a-hero__shade,
.about-page .r7a-hero__shade {
  background: linear-gradient(
    180deg,
    rgba(14, 12, 11, 0.28) 0%,
    rgba(14, 12, 11, 0.42) 45%,
    rgba(14, 12, 11, 0.72) 100%
  ) !important;
}

/* =========================================================
   SERVICES PAGE — full redesign
   ========================================================= */
.r7-services-page .r7s-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #14110f;
}

.r7s-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.r7s-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 12, 11, 0.3) 0%,
    rgba(14, 12, 11, 0.45) 40%,
    rgba(14, 12, 11, 0.78) 100%
  );
}

.r7s-hero__inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 72px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.r7s-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #e8d7bc !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Force light hero text over global dark h1 */
body.r7-body.services-page .r7s-hero h1,
body.r7-body.r7-services-page .r7s-hero h1,
.r7-services-page .r7s-hero h1 {
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.5rem, 5.2vw, 4.1rem) !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35) !important;
}

body.r7-body.services-page .r7s-hero p,
body.r7-body.r7-services-page .r7s-hero p,
.r7-services-page .r7s-hero p {
  margin: 0 auto 28px !important;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.08rem !important;
  line-height: 1.75 !important;
}

.r7s-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.r7s-hero__actions .default-btn {
  background: #b8956c !important;
  border-color: #b8956c !important;
  color: #fff !important;
}

.r7s-hero__actions .default-btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
}

.r7s-hero__actions .default-btn-outline:hover {
  background: #fff !important;
  color: #161311 !important;
  border-color: #fff !important;
}

/* Intro */
.r7s-intro {
  padding: 72px 0 20px;
  background: #fbf8f4;
}

.r7s-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: end;
}

.r7s-intro__grid h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 500;
  line-height: 1.18;
  color: #161311 !important;
}

.r7s-intro__grid > p {
  margin: 0;
  color: #6f675f;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Cards */
.r7s-grid-wrap {
  padding: 40px 0 90px;
  background: #fbf8f4;
}

.r7s-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.r7s-card:hover {
  transform: translateY(-6px);
  border-color: #d9cfc2;
  box-shadow: 0 20px 44px rgba(22, 19, 17, 0.1);
}

.r7s-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ece6de;
}

.r7s-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.r7s-card:hover .r7s-card__media img {
  transform: scale(1.04);
}

.r7s-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  min-width: 40px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(251, 248, 244, 0.95);
  color: #161311;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.r7s-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.r7s-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0e8dc;
  color: #a8895f;
  font-size: 16px;
  margin-bottom: 14px;
}

.r7s-card__body h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: #161311 !important;
}

.r7s-card__body p {
  margin: 0 0 18px;
  color: #7a726a;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

/* Benefits */
.r7s-benefits {
  padding: 90px 0;
  background: #f7f3ee;
}

.r7s-benefit {
  height: 100%;
  padding: 28px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8e2d9;
}

.r7s-benefit strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #a8895f;
  line-height: 1;
}

.r7s-benefit h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #161311 !important;
}

.r7s-benefit p {
  margin: 0;
  color: #7a726a;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Process */
.r7s-process {
  padding: 20px 0 90px;
  background: #f7f3ee;
}

.r7s-process__box {
  padding: 40px 36px;
  border-radius: 24px;
  background: #161311;
  color: #fff;
}

.r7s-process__head {
  margin-bottom: 28px;
  max-width: 560px;
}

.r7s-process__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff !important;
  line-height: 1.2;
}

.r7s-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.r7s-process__steps > div {
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.r7s-process__steps span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(184, 149, 108, 0.2);
  color: #d4c2a8;
  font-size: 13px;
  font-weight: 600;
}

.r7s-process__steps h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff !important;
}

.r7s-process__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* CTA */
.r7s-cta {
  padding: 0 0 100px;
  background: #fbf8f4;
}

.r7s-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 42px;
  border-radius: 24px;
  background:
    linear-gradient(125deg, rgba(14, 12, 11, 0.9), rgba(14, 12, 11, 0.72)),
    url('../img/title-bg.jpg') center/cover no-repeat;
}

.r7s-cta__box h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff !important;
  line-height: 1.2;
}

.r7s-cta__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

.r7s-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.r7s-cta__actions .default-btn {
  background: #b8956c !important;
  border-color: #b8956c !important;
  color: #fff !important;
}

.r7s-cta__actions .default-btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
}

.r7s-cta__actions .default-btn-outline:hover {
  background: #fff !important;
  color: #161311 !important;
  border-color: #fff !important;
}

@media (max-width: 991px) {
  .r7s-hero__inner {
    padding: 90px 0 56px;
    text-align: left;
  }
  .r7s-hero__actions {
    justify-content: flex-start;
  }
  .r7s-intro__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .r7s-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7s-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }
}

@media (max-width: 575px) {
  .r7s-process__steps {
    grid-template-columns: 1fr;
  }
  .r7s-process__box {
    padding: 28px 20px;
  }
}

/* =========================================================
   PROJECTS PAGE — full redesign
   ========================================================= */
.r7-projects-page .r7p-hero {
  padding: 72px 0 28px;
  background: #fbf8f4;
  text-align: center;
}

.r7p-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.r7p-hero h1 {
  margin: 0 0 16px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  color: #161311 !important;
}

.r7p-hero p {
  margin: 0 auto !important;
  max-width: 560px;
  color: #6f675f !important;
  font-size: 1.06rem !important;
  line-height: 1.75 !important;
}

/* Filters */
.r7p-portfolio {
  padding: 20px 0 80px;
  background: #fbf8f4;
}

.r7p-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.r7p-filter {
  appearance: none;
  border: 1px solid #e0d8cd;
  background: #fff;
  color: #3d3732;
  border-radius: 999px;
  padding: 9px 16px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.r7p-filter:hover {
  border-color: #c9b59a;
  color: #161311;
}

.r7p-filter.is-active {
  background: #161311;
  border-color: #161311;
  color: #fff;
}

/* Cards */
.r7p-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.r7p-card:hover {
  transform: translateY(-6px);
  border-color: #d9cfc2;
  box-shadow: 0 20px 44px rgba(22, 19, 17, 0.1);
  text-decoration: none;
}

.r7p-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ece6de;
}

.r7p-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.r7p-card:hover .r7p-card__media img {
  transform: scale(1.04);
}

.r7p-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
  gap: 8px;
}

.r7p-card__body h3 {
  margin: 0 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.45rem !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: #161311 !important;
}

.r7p-card__body .r7c-link {
  margin-top: 6px;
}

.r7p-empty {
  text-align: center;
  color: #7a726a;
  margin: 24px 0 0;
}

/* Highlights */
.r7p-highlights {
  padding: 0 0 20px;
  background: #fbf8f4;
}

.r7p-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px;
  border-radius: 22px;
  background: #161311;
}

.r7p-highlights__grid > div {
  text-align: center;
  padding: 8px;
}

.r7p-highlights__grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
}

.r7p-highlights__grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

/* CTA */
.r7p-cta {
  padding: 70px 0 100px;
  background: #fbf8f4;
}

.r7p-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 42px;
  border-radius: 24px;
  background:
    linear-gradient(125deg, rgba(14, 12, 11, 0.9), rgba(14, 12, 11, 0.72)),
    url('../img/title-bg.jpg') center/cover no-repeat;
}

.r7p-cta__box h2 {
  margin: 0 0 10px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(1.9rem, 3vw, 2.6rem) !important;
  font-weight: 500 !important;
  color: #fff !important;
  line-height: 1.2 !important;
}

.r7p-cta__box p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 480px;
}

.r7p-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.r7p-cta__actions .default-btn {
  background: #b8956c !important;
  border-color: #b8956c !important;
  color: #fff !important;
}

.r7p-cta__actions .default-btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
}

.r7p-cta__actions .default-btn-outline:hover {
  background: #fff !important;
  color: #161311 !important;
  border-color: #fff !important;
}

@media (max-width: 991px) {
  .r7p-hero {
    padding: 56px 0 16px;
    text-align: left;
  }
  .r7p-filters {
    justify-content: flex-start;
  }
  .r7p-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7p-cta__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }
}

@media (max-width: 575px) {
  .r7p-highlights__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CONTACT PAGE — full redesign
   ========================================================= */
.r7-contact-page .r7c-hero {
  padding: 64px 0 28px;
  background: #fbf8f4;
  text-align: center;
}

.r7c-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.r7-contact-page .r7c-hero h1 {
  margin: 0 0 14px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  color: #161311 !important;
}

.r7-contact-page .r7c-hero p {
  margin: 0 auto !important;
  max-width: 560px;
  color: #6f675f !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
}

/* Quick actions */
.r7c-quick {
  padding: 8px 0 36px;
  background: #fbf8f4;
}

.r7c-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.r7c-quick__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8e2d9;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 100%;
}

a.r7c-quick__card:hover {
  transform: translateY(-3px);
  border-color: #d9cfc2;
  box-shadow: 0 12px 28px rgba(22, 19, 17, 0.08);
  text-decoration: none;
}

.r7c-quick__card i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0e8dc;
  color: #a8895f;
  flex-shrink: 0;
}

.r7c-quick__card strong {
  display: block;
  font-size: 0.95rem;
  color: #161311;
  margin-bottom: 3px;
}

.r7c-quick__card span {
  display: block;
  font-size: 0.86rem;
  color: #7a726a;
  line-height: 1.4;
}

/* Main panel */
.r7c-main {
  padding: 10px 0 70px;
  background: #fbf8f4;
}

.r7c-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e8e2d9;
  background: #fff;
  box-shadow: 0 20px 50px rgba(22, 19, 17, 0.06);
}

.r7c-aside {
  padding: 40px 34px;
  background:
    radial-gradient(ellipse at top left, rgba(184, 149, 108, 0.18), transparent 48%),
    linear-gradient(165deg, #171411 0%, #2a231e 100%);
  color: #fff;
}

.r7c-aside__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.r7c-aside__brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
}

.r7c-aside__brand strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.r7c-aside__brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.r7c-aside h2 {
  margin: 0 0 12px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
  color: #ffffff !important;
}

.r7c-aside > p {
  margin: 0 0 24px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.7 !important;
  font-size: 0.98rem !important;
}

.r7c-aside__owner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.r7c-aside__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #b8956c, #8f734d);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.r7c-aside__owner strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}

.r7c-aside__owner span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12.5px;
}

.r7c-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.r7c-aside__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.r7c-aside__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.r7c-aside__list i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 108, 0.16);
  color: #d4c2a8;
  flex-shrink: 0;
}

.r7c-aside__list span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.r7c-aside__list strong,
.r7c-aside__list strong a {
  color: #fff !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.45;
}

.r7c-aside__list strong a:hover {
  color: #d4c2a8 !important;
}

/* Form */
.r7c-form-wrap {
  padding: 40px 38px;
  background: #fff;
}

.r7c-form-head {
  margin-bottom: 24px;
}

.r7c-form-head h3 {
  margin: 0 0 8px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 2rem !important;
  font-weight: 500 !important;
  color: #161311 !important;
}

.r7c-form-head p {
  margin: 0 !important;
  color: #6f675f !important;
  line-height: 1.6 !important;
}

.r7c-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d3732;
}

.r7c-label span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: #9a9188;
}

.r7c-input,
.r7c-textarea,
.r7c-select {
  width: 100%;
  border: 1px solid #e0d8cd;
  border-radius: 12px;
  background: #fbf8f4;
  padding: 13px 14px;
  color: #161311;
  font-size: 15px;
  font-family: "Outfit", system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: none;
}

.r7c-input:focus,
.r7c-textarea:focus,
.r7c-select:focus {
  border-color: #b8956c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 149, 108, 0.14);
}

.r7c-textarea {
  min-height: 130px;
  resize: vertical;
}

.r7c-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13.5px;
  color: #6f675f;
  line-height: 1.55;
}

.r7c-consent input {
  display: none;
}

.r7c-consent__box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #d5cbbd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: transparent;
  background: #fff;
  transition: all 0.2s ease;
}

.r7c-consent input:checked + .r7c-consent__box {
  background: #b8956c;
  border-color: #b8956c;
  color: #fff;
}

.r7c-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #b8956c, #9a784f);
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.r7c-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(154, 120, 79, 0.28);
}

/* Map */
.r7c-map {
  padding: 10px 0 100px;
  background: #fbf8f4;
}

.r7c-map__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.r7c-map__head h2 {
  margin: 8px 0 6px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 500 !important;
  color: #161311 !important;
}

.r7c-map__head p {
  margin: 0 !important;
  color: #6f675f !important;
}

.r7c-map__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e0d8cd;
  background: #fff;
  color: #161311;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.r7c-map__btn:hover {
  border-color: #b8956c;
  color: #a8895f;
  text-decoration: none;
}

.r7c-map__frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e2d9;
  height: 400px;
  background: #ece6de;
  box-shadow: 0 14px 36px rgba(22, 19, 17, 0.06);
}

.r7c-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.02);
}

@media (max-width: 991px) {
  .r7c-hero {
    text-align: left;
    padding-top: 48px;
  }
  .r7c-quick__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r7c-panel {
    grid-template-columns: 1fr;
  }
  .r7c-form-wrap,
  .r7c-aside {
    padding: 28px 22px;
  }
}

@media (max-width: 575px) {
  .r7c-quick__grid {
    grid-template-columns: 1fr;
  }
  .r7c-map__frame {
    height: 300px;
  }
}
