/* ============================================
   LOBBY SQUARE - STYLESHEET
   Inspired by The Dolli: ultra-minimal, elegant
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 18px 48px;
  border-bottom: 1px solid #e8e8e8;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #111111;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111111;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 0;
}

.lang-btn.active {
  opacity: 1;
}

.lang-divider {
  opacity: 0.3;
  font-size: 10px;
}

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #111111;
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #111111;
  color: #ffffff;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #111111;
  transition: opacity 0.2s;
}

.mobile-menu nav a:hover {
  opacity: 0.5;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.4;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #c8c4bc;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 48px 80px;
  color: #ffffff;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 700px;
}

/* ---------- INTRO SECTION ---------- */
.intro {
  padding: 120px 48px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.5;
}

.intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.6;
  color: #222222;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: 0 48px 120px;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e8e4de;
  cursor: pointer;
}

.service-card-media {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.service-card:hover .service-card-media {
  transform: scale(1.04);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  color: #ffffff;
}

.service-number {
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 12px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.service-card:hover .service-link {
  border-color: #ffffff;
}

/* ---------- PROPERTIES TEASER ---------- */
.properties-teaser {
  background: #111111;
  color: #ffffff;
  padding: 100px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.properties-teaser-content {
  max-width: 540px;
}

.properties-teaser .section-label {
  opacity: 0.4;
  color: #ffffff;
}

.properties-teaser .section-title {
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 24px;
}

.properties-teaser-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 40px;
}

.btn-outline-white {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  color: #ffffff;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.properties-teaser-visual {
  flex-shrink: 0;
  width: 380px;
  height: 280px;
  background: #1e1e1e;
  overflow: hidden;
}

.properties-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding: 64px 48px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #666666;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.5;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 0.9rem;
  color: #444444;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #111111;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #999999;
  letter-spacing: 0.05em;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 160px 48px 80px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-hero .section-label {
  margin-bottom: 24px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- SERVICES PAGE ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-media {
  background: #e8e4de;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: #f9f8f6;
}

.service-detail-number {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.35;
  margin-bottom: 24px;
}

.service-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.service-detail-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555555;
  margin-bottom: 40px;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature-list li {
  font-size: 0.9rem;
  color: #444444;
  padding-left: 20px;
  position: relative;
}

.service-feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

/* ---------- PROPERTIES PAGE ---------- */
.properties-intro {
  padding: 60px 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.properties-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555555;
}

.properties-grid {
  padding: 0 48px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.property-card {
  display: block;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.property-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.property-card-media {
  aspect-ratio: 4/3;
  background: #e8e4de;
  overflow: hidden;
}

.property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-card-media img {
  transform: scale(1.04);
}

.property-card-info {
  padding: 32px 28px;
}

.property-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}

.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.property-type {
  font-size: 0.85rem;
  color: #777777;
  margin-bottom: 20px;
}

.property-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 1px solid #111111;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.property-card:hover .property-cta {
  opacity: 0.5;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: 60px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  border-top: 1px solid #e8e8e8;
  padding-top: 24px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 12px;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.form-input, .form-textarea {
  border: none;
  border-bottom: 1px solid #d8d8d8;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #111111;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus, .form-textarea:focus {
  border-color: #111111;
}

.form-textarea {
  resize: none;
  height: 140px;
}

.form-submit {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #111111;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  opacity: 0.75;
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 24px 24px;
  }

  .nav.scrolled {
    padding: 16px 24px;
  }

  .nav-right .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .intro {
    padding: 80px 24px;
  }

  .services {
    padding: 0 24px 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .properties-teaser {
    flex-direction: column;
    padding: 80px 24px;
    text-align: center;
  }

  .properties-teaser-visual {
    width: 100%;
    height: 220px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 80px;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  .service-detail-content {
    padding: 48px 24px;
  }

  .contact-section {
    padding: 40px 24px 80px;
  }

  .footer {
    padding: 48px 24px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---------- FOR PROPERTY OWNERS ---------- */
.owners {
  padding: 120px 48px;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.owners-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.owners .section-title {
  margin-bottom: 24px;
}
.owners-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: #222222;
  margin-bottom: 48px;
}
.owners-features {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.owners-features li {
  position: relative;
  padding-left: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}
.owners-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: #111111;
}

/* ---------- COVERAGE ---------- */
.coverage {
  padding: 90px 48px;
  text-align: center;
}
.coverage-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #222222;
}


/* ---- ADDED 2026-06-19: owner CTA, credibility line, footer privacy ---- */
.owner-cta-btn {
  display: inline-block;
  margin-top: 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  color: #ffffff;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  transition: background 0.2s, color 0.2s;
}
.owner-cta-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
}
.credibility-line {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: #555;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-privacy-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-privacy-link:hover {
  opacity: 1;
}


/* ---- ADDED 2026-06-19e: properties intro, review score, top-rated badge ---- */
.properties-intro {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: #555;
  margin: 0 auto 56px;
  max-width: 700px;
}
.property-card-media {
  position: relative;
}
.property-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #1a1a1a;
  color: #ffffff;
  margin-bottom: 14px;
}
.property-score {
  margin-top: 6px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #666;
}
.property-score-num {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #1a1a1a;
  padding: 5px 9px;
  margin-right: 8px;
}


/* Brand logo image */
.logo-img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-logo .logo-img {
  width: 44px;
  height: 44px;
}
