/* ═══════════════════════════════════════════════
   UNIQUECATIONS — Main Stylesheet
   Fonts loaded via functions.php (Cormorant + Jost)
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black:   #0d0d0d;
  --white:   #ffffff;
  --off:     #f7f6f2;
  --gray:    #b0b0b0;
  --muted:   #888;
  --border:  #e5e3de;
  --accent:  #c47b4a;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', system-ui, sans-serif;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius:  2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 400; color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 300; line-height: 1.05; text-wrap: pretty; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container { padding: 0 20px; } }

/* ── Section helpers ── */
.section     { padding: 100px 0; }
.section-sm  { padding: 64px 0; }
.section-off { background: var(--off); }
.section-dark { background: var(--black); color: var(--white); }

/* ── Eyebrow ── */
.uc-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Buttons ── */
.uc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.uc-btn--dark  { background: var(--black); color: var(--white); border-color: var(--black); }
.uc-btn--dark:hover { background: #2a2a2a; border-color: #2a2a2a; }
.uc-btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.uc-btn--outline:hover { background: var(--black); color: var(--white); }
.uc-btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.uc-btn--outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.uc-btn--white { background: var(--white); color: var(--black); border-color: var(--white); }
.uc-btn--white:hover { background: var(--off); }
.uc-btn--sm  { padding: 10px 20px; font-size: 11px; }
.uc-btn--block { width: 100%; display: flex; }

/* ── Text link ── */
.uc-text-link { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.uc-text-btn  { background: none; border: none; font-size: 14px; text-decoration: underline; cursor: pointer; }

/* ── Tag ── */
.uc-tag { display: inline-block; padding: 4px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; background: var(--border); color: #666; }

/* ── Section header ── */
.uc-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.uc-section-header h2 { font-size: clamp(36px, 4vw, 64px); }
.uc-lead { font-size: 17px; font-weight: 300; color: #666; line-height: 1.85; max-width: 560px; }
.uc-dot { color: var(--border); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.uc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.uc-nav.uc-nav--dark {
  background: rgba(13,13,13,0.97);
  border-bottom-color: #222;
}
.uc-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; max-width: 1280px; margin: 0 auto; padding: 0 48px;
}
.uc-nav__logo img { height: 34px; width: auto; }
.uc-nav--dark .uc-nav__logo img { filter: invert(1); }

.uc-nav__links { display: flex; align-items: center; gap: 36px; }
.uc-nav__links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); transition: color 0.2s; position: relative;
}
.uc-nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--black); transform: scaleX(0); transition: transform 0.25s;
}
.uc-nav__links a:hover::after, .uc-nav__links a.current-menu-item::after { transform: scaleX(1); }
.uc-nav--dark .uc-nav__links a { color: #ccc; }
.uc-nav--dark .uc-nav__links a::after { background: var(--white); }

.uc-nav__actions { display: flex; align-items: center; gap: 12px; }
.uc-nav__cta {
  padding: 11px 24px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; background: var(--black); color: var(--white);
  transition: background 0.2s;
}
.uc-nav__cta:hover { background: #333; }
.uc-nav--dark .uc-nav__cta { background: var(--white); color: var(--black); }

.uc-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.uc-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }
.uc-nav--dark .uc-hamburger span { background: var(--white); }

.uc-mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--black);
  z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.uc-mobile-menu.open { display: flex; }
.uc-mobile-menu__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 24px; color: var(--white); cursor: pointer;
}
.uc-mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.uc-mobile-menu__links li a, .uc-mobile-menu a {
  font-family: var(--serif); font-size: 44px; font-weight: 300; color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.uc-mobile-menu__links li a:hover, .uc-mobile-menu a:hover { color: var(--white); }

@media(max-width:900px){
  .uc-nav__links, .uc-nav__cta { display: none; }
  .uc-hamburger { display: flex; }
  .uc-nav__inner { padding: 0 20px; }
}

/* ═══════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════ */
.uc-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 80px; overflow: hidden;
}
.uc-hero__bg { position: absolute; inset: 0; }
.uc-hero__img { width: 100%; height: 100%; object-fit: cover; }
.uc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 65%, rgba(0,0,0,0.92) 100%); }
.uc-hero__content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; width: 100%; }
.uc-hero__content .uc-eyebrow { color: rgba(255,255,255,0.5); }
.uc-hero__content h1 { font-size: clamp(52px, 7.5vw, 112px); color: var(--white); font-weight: 300; line-height: 1.0; margin-bottom: 28px; max-width: 1000px; }
.uc-hero__content h1 em { font-style: italic; color: var(--gray); }
.uc-hero__sub { font-size: clamp(16px,1.5vw,19px); font-weight: 300; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.75; margin-bottom: 40px; }

/* Search bar */
.uc-hero__search { background: var(--white); display: inline-flex; max-width: 640px; width: 100%; box-shadow: var(--shadow-lg); }
.uc-hero__search-inner { display: flex; align-items: stretch; width: 100%; }
.uc-hero__search-field { display: flex; flex-direction: column; padding: 14px 20px; flex: 1; gap: 2px; }
.uc-hero__search-field label { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.uc-hero__search-field select { font-family: var(--sans); font-size: 14px; font-weight: 400; border: none; outline: none; background: transparent; color: var(--black); padding: 0; appearance: none; cursor: pointer; }
.uc-hero__search-divider { width: 1px; background: var(--border); margin: 12px 0; }
.uc-hero__search-btn { display: flex; align-items: center; gap: 8px; padding: 0 24px; background: var(--black); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; border: none; cursor: pointer; transition: background 0.2s; }
.uc-hero__search-btn:hover { background: #2a2a2a; }

.uc-hero__scroll-hint { position: absolute; bottom: 40px; right: 60px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; z-index: 1; }
.uc-hero__scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

@media(max-width:768px){
  .uc-hero { padding: 0 20px 64px; }
  .uc-hero__search { flex-direction: column; }
  .uc-hero__search-divider { width: 100%; height: 1px; margin: 0 12px; }
  .uc-hero__scroll-hint { display: none; }
}

/* ═══════════════════════════════════════════
   PROPERTY TYPES
═══════════════════════════════════════════ */
.uc-types { padding: 80px 0; }
.uc-types__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.uc-type-card { position: relative; overflow: hidden; display: block; }
.uc-type-card__img { height: 320px; overflow: hidden; }
.uc-type-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.uc-type-card:hover .uc-type-card__img img { transform: scale(1.06); }
.uc-type-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%); transition: background 0.3s; }
.uc-type-card:hover .uc-type-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%); }
.uc-type-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.uc-type-card__body h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px; }
.uc-type-card__body span { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; }
@media(max-width:768px){ .uc-types__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PROPERTY CARDS
═══════════════════════════════════════════ */
.uc-prop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.uc-prop-grid--loading { opacity: 0.5; pointer-events: none; }

.uc-prop-card { display: flex; flex-direction: column; }
.uc-prop-card__img-wrap { position: relative; overflow: hidden; display: block; }
.uc-prop-card__img-wrap img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.uc-prop-card:hover .uc-prop-card__img-wrap img { transform: scale(1.04); }
.uc-prop-card__badge { position: absolute; top: 14px; left: 14px; background: var(--white); padding: 4px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); }
.uc-prop-card__hover-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; background: rgba(0,0,0,0.25); }
.uc-prop-card__hover-btn { color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.8); padding: 12px 24px; }
.uc-prop-card:hover .uc-prop-card__hover-btn { opacity: 1; }

.uc-prop-card__body { padding: 20px 0 0; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.uc-prop-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.uc-prop-card__top h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.15; }
.uc-prop-card__top h3 a:hover { text-decoration: underline; }
.uc-prop-card__price-num { font-family: var(--serif); font-size: 22px; font-weight: 600; white-space: nowrap; }
.uc-prop-card__price-per { font-size: 12px; color: var(--muted); }
.uc-prop-card__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.uc-prop-card__excerpt { font-size: 14px; font-weight: 300; color: #777; line-height: 1.65; margin-top: 4px; }
.uc-prop-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.uc-prop-card__link { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid; padding-bottom: 1px; }

.uc-no-props, .uc-no-results { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--muted); font-size: 16px; }
.uc-no-results { display: none; }

@media(max-width:1024px){ .uc-prop-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px){ .uc-prop-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════════ */
.uc-filter-bar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 70px; z-index: 50; }
.uc-filter-bar__inner { display: flex; align-items: center; gap: 0; overflow-x: auto; padding: 0; scrollbar-width: none; }
.uc-filter-bar__inner::-webkit-scrollbar { display: none; }
.uc-filter-group { display: flex; align-items: center; gap: 0; border-right: 1px solid var(--border); padding: 0 8px 0 0; }
.uc-filter-group:last-of-type { border-right: none; }
.uc-filter-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding: 18px 12px 18px 20px; white-space: nowrap; }
.uc-filter-btns { display: flex; }
.uc-filter-btn { padding: 18px 18px; font-size: 13px; font-weight: 500; background: none; border: none; border-bottom: 2px solid transparent; color: #aaa; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.uc-filter-btn:hover { color: var(--black); }
.uc-filter-btn.active { color: var(--black); border-bottom-color: var(--black); }
.uc-filter-divider { width: 1px; height: 24px; background: var(--border); margin: 0 8px; flex-shrink: 0; }
.uc-filter-count { margin-left: auto; font-size: 13px; color: var(--muted); white-space: nowrap; padding: 0 20px 0 24px; }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.uc-page-hero { padding: 140px 0 64px; }
.uc-page-hero--light { background: var(--off); }
.uc-page-hero h1 { font-size: clamp(44px, 6vw, 88px); margin-top: 8px; }
.uc-page-hero p { font-size: 17px; font-weight: 300; color: #666; margin-top: 16px; max-width: 480px; line-height: 1.75; }

.uc-page-hero { position: relative; overflow: hidden; }
.uc-page-hero__bg { position: absolute; inset: 0; }
.uc-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.uc-page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.uc-page-hero__content { position: relative; z-index: 1; padding: 160px 0 80px; }
.uc-page-hero__content h1 { color: var(--white); }

/* ═══════════════════════════════════════════
   PROPERTY DETAIL PAGE
═══════════════════════════════════════════ */
.uc-prop-hero { position: relative; height: 60vh; min-height: 480px; overflow: hidden; }
.uc-prop-hero__img { width: 100%; height: 100%; object-fit: cover; }
.uc-prop-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%); }
.uc-prop-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 48px; color: var(--white); }
.uc-prop-hero__content h1 { font-size: clamp(36px, 5vw, 72px); color: var(--white); margin: 12px 0 16px; }
.uc-prop-hero__meta { display: flex; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.7); flex-wrap: wrap; }

.uc-prop-detail__grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.uc-prop-detail__desc { font-size: 16px; font-weight: 300; line-height: 1.85; color: #444; }
.uc-prop-detail__desc p { margin-bottom: 20px; }
.uc-prop-detail__desc h2, .uc-prop-detail__desc h3 { font-family: var(--serif); margin: 32px 0 12px; }
.uc-prop-detail__amenities, .uc-prop-detail__location { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.uc-prop-detail__amenities h3, .uc-prop-detail__location h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 24px; }
.uc-amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.uc-amenity { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 400; color: #555; }

.uc-booking-card { position: sticky; top: 100px; border: 1.5px solid var(--border); padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; }
.uc-booking-card__price { display: flex; align-items: baseline; gap: 4px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.uc-booking-card__amount { font-family: var(--serif); font-size: 48px; font-weight: 600; line-height: 1; }
.uc-booking-card__per { font-size: 15px; color: var(--muted); }
.uc-booking-card__meta { display: flex; flex-direction: column; gap: 10px; }
.uc-booking-card__meta div { display: flex; justify-content: space-between; font-size: 14px; color: #555; }
.uc-booking-card__meta span { font-weight: 600; }
.uc-booking-card__note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.6; }

@media(max-width:1024px){
  .uc-prop-detail__grid { grid-template-columns: 1fr; }
  .uc-booking-card { position: static; }
}
@media(max-width:640px){ .uc-amenities-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.uc-hiw__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.uc-hiw__step { background: #161616; padding: 52px 44px; display: flex; flex-direction: column; gap: 16px; }
.uc-hiw__num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: #2a2a2a; line-height: 1; }
.uc-hiw__step h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); }
.uc-hiw__step p { font-size: 15px; font-weight: 300; color: #888; line-height: 1.75; }
@media(max-width:900px){ .uc-hiw__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════ */
.uc-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.uc-why__text h2 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 20px; }
.uc-why__text p { font-size: 17px; font-weight: 300; color: #555; line-height: 1.85; }
.uc-why__points { display: flex; flex-direction: column; gap: 0; }
.uc-why__point { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.uc-why__point:first-child { border-top: 1px solid var(--border); }
.uc-why__point-icon { width: 40px; height: 40px; background: var(--off); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.uc-why__point h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.uc-why__point p { font-size: 14px; font-weight: 300; color: #666; line-height: 1.65; }
@media(max-width:900px){ .uc-why__grid { grid-template-columns: 1fr; gap: 48px; } }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.uc-reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.uc-review { background: var(--off); padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; }
.uc-review__stars { font-size: 18px; color: #c47b4a; letter-spacing: 2px; }
.uc-review p { font-family: var(--serif); font-size: 18px; font-weight: 300; font-style: italic; line-height: 1.65; color: #444; flex: 1; }
.uc-review__author { display: flex; align-items: center; gap: 12px; }
.uc-review__avatar { width: 40px; height: 40px; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; border-radius: 50%; flex-shrink: 0; }
.uc-review__author strong { display: block; font-size: 14px; font-weight: 600; }
.uc-review__author span { font-size: 13px; color: var(--muted); }
@media(max-width:900px){ .uc-reviews__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.uc-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.uc-blog-card { display: flex; flex-direction: column; }
.uc-blog-card__img { overflow: hidden; }
.uc-blog-card__img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.uc-blog-card:hover .uc-blog-card__img img { transform: scale(1.05); }
.uc-blog-card__body { padding: 20px 0 0; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.uc-blog-card__body h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.2; }
.uc-blog-card__body p { font-size: 14px; font-weight: 300; color: #777; line-height: 1.65; }
.uc-blog-meta { font-size: 12px; color: var(--muted); }

.uc-blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 72px; background: var(--off); }
.uc-blog-featured__img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.uc-blog-featured__body { padding: 56px 52px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.uc-blog-featured__body h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); font-weight: 400; line-height: 1.15; }
.uc-blog-featured__body h2 a:hover { text-decoration: underline; }
.uc-blog-featured__body p { font-size: 15px; font-weight: 300; color: #666; line-height: 1.8; }

.uc-pagination { margin-top: 64px; display: flex; justify-content: center; }
.uc-pagination .nav-links { display: flex; gap: 8px; }
.uc-pagination .page-numbers { padding: 10px 18px; border: 1.5px solid var(--border); font-size: 14px; font-weight: 500; transition: all 0.2s; }
.uc-pagination .page-numbers.current, .uc-pagination .page-numbers:hover { background: var(--black); color: var(--white); border-color: var(--black); }

@media(max-width:900px){ .uc-blog-grid { grid-template-columns: 1fr; } .uc-blog-featured { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════ */
.uc-post-hero { position: relative; height: 55vh; min-height: 400px; overflow: hidden; }
.uc-post-hero__img { width: 100%; height: 100%; object-fit: cover; }
.uc-post-hero__fallback { width: 100%; height: 100%; background: var(--black); }
.uc-post-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.uc-post-hero__content { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 48px; color: var(--white); }
.uc-post-hero__content h1 { font-size: clamp(32px, 4.5vw, 64px); color: var(--white); margin: 12px 0 16px; max-width: 900px; }
.uc-post-hero__meta { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }

.uc-post-body__inner { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.uc-post-content { font-size: 17px; font-weight: 300; line-height: 1.85; color: #333; }
.uc-post-content p { margin-bottom: 24px; }
.uc-post-content h2, .uc-post-content h3 { font-family: var(--serif); margin: 40px 0 16px; }
.uc-post-content img { max-width: 100%; margin: 32px 0; }
.uc-post-sidebar__box { background: var(--off); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
.uc-post-sidebar__box h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.uc-post-sidebar__box p { font-size: 14px; color: #666; line-height: 1.65; }
.uc-post-sidebar { position: sticky; top: 100px; }

@media(max-width:1024px){ .uc-post-body__inner { grid-template-columns: 1fr; } .uc-post-sidebar { position: static; } }

/* ═══════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════ */
.uc-newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.uc-newsletter-form input { flex: 1; padding: 16px 20px; font-family: var(--sans); font-size: 15px; border: 1.5px solid #333; background: #1a1a1a; color: var(--white); outline: none; }
.uc-newsletter-form input::placeholder { color: #555; }
.uc-newsletter-form input:focus { border-color: #666; }
@media(max-width:580px){ .uc-newsletter-form { flex-direction: column; } }

/* ═══════════════════════════════════════════
   OWNER CTA STRIP (homepage)
═══════════════════════════════════════════ */
.uc-owner-cta { overflow: hidden; }
.uc-owner-cta__inner { display: grid; grid-template-columns: 1fr 1fr; }
.uc-owner-cta__left { background: var(--off); padding: 88px 72px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.uc-owner-cta__left h2 { font-size: clamp(30px, 3.5vw, 52px); }
.uc-owner-cta__left p { font-size: 16px; font-weight: 300; color: #666; line-height: 1.8; }
.uc-owner-cta__right { position: relative; min-height: 400px; overflow: hidden; }
.uc-owner-cta__right img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:900px){ .uc-owner-cta__inner { grid-template-columns: 1fr; } .uc-owner-cta__right { height: 300px; } }

/* ═══════════════════════════════════════════
   OWNER PAGE
═══════════════════════════════════════════ */
.uc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.uc-two-col h2 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 20px; }
.uc-stats-col { display: flex; flex-direction: column; gap: 0; }
.uc-stat-block { padding: 36px 0; border-bottom: 1px solid var(--border); }
.uc-stat-block:first-child { border-top: 1px solid var(--border); }
.uc-stat-block__num { font-family: var(--serif); font-size: 60px; font-weight: 600; line-height: 1; color: var(--black); }
.uc-stat-block__label { font-size: 14px; color: var(--muted); margin-top: 6px; }

.uc-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.uc-service-item { background: var(--white); padding: 52px 48px; display: flex; flex-direction: column; gap: 16px; border: 1px solid var(--border); }
.uc-service-item--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.uc-service-item--dark h3 { color: var(--white); }
.uc-service-item--dark p { color: #888; }
.uc-service-item--dark ul li { color: #aaa; border-color: #333; }
.uc-service-item__num { font-family: var(--serif); font-size: 44px; font-weight: 300; color: #e0e0e0; line-height: 1; }
.uc-service-item--dark .uc-service-item__num { color: #333; }
.uc-service-item h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.uc-service-item p { font-size: 15px; font-weight: 300; color: #666; line-height: 1.75; }
.uc-service-item ul { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.uc-service-item ul li { font-size: 14px; color: #555; padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.uc-service-item ul li::before { content: '→'; font-size: 12px; color: var(--muted); }

.uc-pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.uc-pricing-card { border: 1.5px solid var(--border); padding: 52px 48px; display: flex; flex-direction: column; gap: 20px; }
.uc-pricing-card--dark { background: var(--black); border-color: var(--black); color: var(--white); }
.uc-pricing-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #888; }
.uc-pricing-card--dark .uc-pricing-card__label { color: #666; }
.uc-pricing-card__rate { font-family: var(--serif); font-size: 64px; font-weight: 600; line-height: 0.95; }
.uc-pricing-card__base { font-size: 16px; font-weight: 300; color: #888; }
.uc-pricing-card--dark .uc-pricing-card__base { color: #666; }
.uc-pricing-card__features { display: flex; flex-direction: column; gap: 0; flex: 1; }
.uc-pricing-card__features li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: #555; display: flex; gap: 10px; align-items: center; }
.uc-pricing-card--dark .uc-pricing-card__features li { color: #aaa; border-color: #222; }
.uc-pricing-card__features li::before { content: '✓'; font-size: 12px; color: #aaa; font-weight: 700; }

.uc-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.uc-pillar { background: var(--off); padding: 44px 40px; display: flex; flex-direction: column; gap: 12px; }
.uc-pillar__line { width: 28px; height: 2px; background: var(--border); margin-bottom: 4px; }
.uc-pillar h4 { font-family: var(--sans); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.uc-pillar p { font-size: 14px; font-weight: 300; color: #666; line-height: 1.7; }

@media(max-width:900px){
  .uc-two-col, .uc-services-grid, .uc-pricing-grid, .uc-pillars-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   OWNER FORM
═══════════════════════════════════════════ */
.uc-form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.uc-form-intro h2 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 16px; }
.uc-form-intro p { font-size: 16px; font-weight: 300; color: #666; line-height: 1.8; margin-bottom: 32px; }
.uc-form-promises { display: flex; flex-direction: column; gap: 8px; }
.uc-form-promise { font-size: 14px; font-weight: 500; color: #444; display: flex; gap: 8px; align-items: center; }
.uc-form-promise span { color: var(--accent); font-weight: 700; }

.uc-form { display: flex; flex-direction: column; gap: 18px; }
.uc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.uc-form__field { display: flex; flex-direction: column; gap: 6px; }
.uc-form__field label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.uc-form__field input, .uc-form__field select, .uc-form__field textarea {
  padding: 14px 16px; font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--black); background: var(--white); border: 1.5px solid var(--border);
  outline: none; transition: border-color 0.2s; appearance: none; border-radius: 0;
}
.uc-form__field input:focus, .uc-form__field select:focus, .uc-form__field textarea:focus { border-color: var(--black); }
.uc-form__field textarea { min-height: 120px; resize: vertical; }

.uc-form-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 52px; background: var(--off); }
.uc-form-success__icon { width: 56px; height: 56px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.uc-form-success h3 { font-family: var(--serif); font-size: 32px; font-weight: 300; }
.uc-form-success p { font-size: 15px; color: #666; }

@media(max-width:900px){ .uc-form-layout { grid-template-columns: 1fr; } .uc-form__row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.uc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.uc-contact-info h2 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 16px; }
.uc-contact-info > p { font-size: 16px; font-weight: 300; color: #666; line-height: 1.8; margin-bottom: 40px; }
.uc-contact-items { display: flex; flex-direction: column; }
.uc-contact-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.uc-contact-item:first-child { border-top: 1px solid var(--border); }
.uc-contact-item__label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.uc-contact-item__value { font-size: 18px; font-weight: 300; }
.uc-contact-item__value a:hover { text-decoration: underline; }
.uc-contact-form-wrap h2 { font-size: clamp(26px, 2.5vw, 40px); margin-bottom: 28px; }
@media(max-width:900px){ .uc-contact-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.uc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.uc-about-text h2 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 20px; }
.uc-about-text p { font-size: 16px; font-weight: 300; color: #555; line-height: 1.85; margin-bottom: 18px; }
.uc-about-img img { width: 100%; height: 520px; object-fit: cover; }
.uc-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.uc-mission-card { padding: 56px 52px; }
.uc-mission-card--dark { background: var(--black); color: var(--white); }
.uc-mission-card h3 { font-family: var(--serif); font-size: 40px; font-weight: 300; margin-bottom: 20px; }
.uc-mission-card p { font-size: 16px; font-weight: 300; color: #888; line-height: 1.85; }
.uc-mission-card:not(.uc-mission-card--dark) p { color: #555; }
.uc-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.uc-value-item { background: var(--off); padding: 40px 36px; display: flex; flex-direction: column; gap: 10px; }
.uc-value-item__line { width: 24px; height: 2px; background: var(--border); margin-bottom: 4px; }
.uc-value-item h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.uc-value-item p { font-size: 14px; font-weight: 300; color: #666; line-height: 1.7; }
@media(max-width:900px){ .uc-about-grid,.uc-mission-grid,.uc-values-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.uc-footer { background: var(--black); color: var(--white); }
.uc-footer__top { padding: 80px 0 64px; }
.uc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; }
.uc-footer__logo { height: 40px; filter: invert(1); margin-bottom: 20px; }
.uc-footer__brand p { font-size: 14px; font-weight: 300; color: #888; line-height: 1.75; max-width: 260px; }
.uc-footer__social { display: flex; gap: 16px; margin-top: 20px; }
.uc-footer__social a { color: #666; transition: color 0.2s; }
.uc-footer__social a:hover { color: var(--white); }
.uc-footer__col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #555; margin-bottom: 20px; }
.uc-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.uc-footer__col ul a, .uc-footer__col ul span { font-size: 14px; font-weight: 300; color: #888; transition: color 0.2s; }
.uc-footer__col ul a:hover { color: var(--white); }
.uc-footer__bottom { border-top: 1px solid #1e1e1e; padding: 24px 0; }
.uc-footer__bottom .container { display: flex; justify-content: space-between; align-items: center; }
.uc-footer__bottom p { font-size: 12px; color: #444; }
@media(max-width:900px){
  .uc-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .uc-footer__brand { grid-column: 1/-1; }
}

/* ═══════════════════════════════════════════
   MISC
═══════════════════════════════════════════ */
.uc-empty { font-size: 16px; color: var(--muted); text-align: center; padding: 60px 0; }
.uc-page-content { max-width: 760px; font-size: 17px; font-weight: 300; line-height: 1.85; color: #444; }
.uc-page-content p { margin-bottom: 20px; }
.uc-page-content h2 { font-family: var(--serif); font-size: 36px; margin: 40px 0 16px; }

/* WordPress body class helpers */
body.single-property .uc-nav { background: rgba(255,255,255,0.96); }
