/* ============================================
   RHYDER PROPERTY SERVICES - MAIN STYLESHEET
   ============================================ */

:root {
  --navy: #0d1b2a;
  --steel: #1c3144;
  --ice: #e8f0f7;
  --white: #ffffff;
  --gold: #c9a84c;
  --red: #c0392b;
  --mid: #6b8cae;
  --text: #1a1a2e;
  --light-text: #5a6a7a;
  --container: 1000px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

/* ============================================
   NAV
   ============================================ */

nav {
  background: #ffffff;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: auto;
}
nav a.brand img { height: 144px; width: auto; display: block; }
nav .nav-links { display: flex; align-items: center; gap: 0.3rem; }
nav .nav-links a { color: #0d1b2a; text-decoration: none; font-size: 0.88rem; letter-spacing: 0.04em; padding: 0.4rem 0.8rem; transition: color 0.2s; }
nav .nav-links a:hover { color: #c9a84c; }
nav .nav-links a.contact-btn { background: #c9a84c; color: #0d1b2a; padding: 0.45rem 1.1rem; font-weight: 600; border-radius: 3px; margin-left: 0.4rem; }
nav .nav-links a.contact-btn:hover { opacity: 0.85; }
nav .nav-links a.lang-btn { font-size: 1.2rem; padding: 0.2rem 0.4rem; opacity: 0.7; transition: opacity 0.2s; }
nav .nav-links a.lang-btn:hover { opacity: 1; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #0d1b2a; transition: all 0.3s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; background: #ffffff; border-top: 1px solid #e8e8e8; padding: 1rem 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #0d1b2a; text-decoration: none; font-size: 1rem; padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0; transition: color 0.2s; }
.mobile-menu a:hover { color: #c9a84c; }
.mobile-lang { display: flex; gap: 1.5rem; padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0; }
.mobile-lang a { border: none; padding: 0; font-size: 0.95rem; }
.mobile-contact-btn { margin-top: 0.8rem; background: #c9a84c; color: #0d1b2a !important; text-align: center; padding: 0.8rem !important; font-weight: 600; border: none !important; }

@media (max-width: 700px) {
  nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav a.brand img { height: 84px; }
}

/* ============================================
   UTILITIES
   ============================================ */

.tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.6rem; }

/* Every section's inner content sits in this width */
.inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HERO
   ============================================ */

.hero { background: var(--navy); color: var(--white); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.hero-tag { display: inline-block; background: var(--red); color: var(--white); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; margin-bottom: 1.5rem; font-weight: 500; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-cta { display: inline-block; background: var(--gold); color: var(--navy); padding: 0.9rem 2rem; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: opacity 0.2s; }
.hero-cta:hover { opacity: 0.85; }
.hero-cta-outline { display: inline-block; border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); padding: 0.9rem 2rem; text-decoration: none; font-size: 0.9rem; transition: border-color 0.2s; }
.hero-cta-outline:hover { border-color: white; color: white; }

.hero-split { display: grid; grid-template-columns: 4fr 1fr; gap: 2rem; align-items: start; }
.hero-testimonial { text-align: right; padding-top: 1rem; }
.hero-testimonial-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.7; margin-bottom: 0.8rem; font-weight: 300; }
.hero-testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.4rem; }
.hero-testimonial-author { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 700px) { .hero-split { grid-template-columns: 1fr; } }

/* ============================================
   DEPOSIT BANNER
   ============================================ */

.deposit-banner { background: var(--gold); color: var(--navy); text-align: center; padding: 1.4rem 2rem; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; }
.deposit-banner strong { font-weight: 700; }

/* ============================================
   ALERT / INFO SECTION
   ============================================ */

.alert-section { background: var(--ice); padding: 4rem 0; }
.alert-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.alert-inner h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; margin-bottom: 1rem; color: var(--navy); }
.alert-inner p { color: var(--light-text); margin-bottom: 1rem; font-size: 1rem; }
.alert-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin: 2.5rem 0; }
@media (max-width: 700px) { .alert-split { grid-template-columns: 1fr; } }
.alert-image img { width: 100%; max-width: 380px; display: block; margin: 0 auto; border-radius: 4px; }
.stat-box { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.stat { background: var(--white); border-left: 4px solid var(--gold); padding: 1.5rem; }
.stat .number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat .label { font-size: 0.85rem; color: var(--light-text); margin-top: 0.4rem; }
.already-know { background: var(--navy); color: rgba(255,255,255,0.7); padding: 1rem 1.5rem; font-size: 0.9rem; display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.already-know a { color: var(--gold); text-decoration: none; font-weight: 500; }

/* ============================================
   SECTION LABEL
   ============================================ */

.section-label { text-align: center; padding: 3.5rem 2rem 0.5rem; max-width: var(--container); margin: 0 auto; }
.section-label .tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.6rem; }
.section-label h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); }
.section-label p { color: var(--light-text); margin: 0.8rem auto 0; font-size: 0.95rem; }

/* ============================================
   PRODUCT CARDS
   ============================================ */

.products { padding: 2.5rem 2rem 4rem; max-width: 1200px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.product-card { border: 1px solid #dde6ee; position: relative; overflow: hidden; transition: box-shadow 0.3s; }
.product-card:hover { box-shadow: 0 8px 30px rgba(13,27,42,0.12); }
.product-card.featured { border-color: var(--gold); }
.product-card .badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--navy); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; font-weight: 500; }
.product-card .card-header { background: var(--navy); color: var(--white); padding: 1.8rem 1.5rem 1.5rem; }
.product-card .tier { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }
.product-card .card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
.product-card .price { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.product-card .price span { font-size: 0.9rem; font-weight: 300; color: var(--mid); font-family: 'DM Sans', sans-serif; }
.product-card .card-body { padding: 1.5rem; background: var(--white); }
.product-card .card-body p { font-size: 0.9rem; color: var(--light-text); margin-bottom: 1.2rem; line-height: 1.6; }
.card-img { width: 100%; height: 200px; object-fit: contain; background: #f5f8fb; display: block; padding: 1rem; }
.feature-list { list-style: none; margin-bottom: 1.5rem; }
.feature-list li { font-size: 0.88rem; color: var(--text); padding: 0.4rem 0; border-bottom: 1px solid var(--ice); display: flex; align-items: flex-start; gap: 0.6rem; }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.security-meter { margin-bottom: 1.5rem; }
.security-meter .meter-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-text); margin-bottom: 0.4rem; }
.meter-bar { height: 4px; background: var(--ice); border-radius: 2px; overflow: hidden; }
.meter-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.card-cta { display: block; background: var(--navy); color: var(--white); text-align: center; padding: 0.9rem; text-decoration: none; font-size: 0.88rem; letter-spacing: 0.05em; transition: background 0.2s; margin-top: 1rem; }
.card-cta:hover { background: var(--steel); }
.product-card.featured .card-cta { background: var(--gold); color: var(--navy); }
.product-card.featured .card-cta:hover { opacity: 0.85; }
.deposit-cta { display: block; background: var(--gold); color: var(--navy); text-align: center; padding: 0.9rem; text-decoration: none; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; transition: opacity 0.2s; margin-top: 0.6rem; }
.deposit-cta:hover { opacity: 0.85; }
.deposit-cta .deposit-amount { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.75; margin-top: 0.15rem; }
.product-card.featured .deposit-cta { background: var(--white); color: var(--navy); border: 2px solid var(--gold); }

/* ============================================
   VISITS SECTION
   ============================================ */

.visits-section { background: var(--navy); color: var(--white); padding: 4rem 0; }
.visits-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 700px) { .visits-inner { grid-template-columns: 1fr; gap: 2rem; } }
.visits-inner .tag { color: var(--gold); }
.visits-inner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; line-height: 1.2; }
.visits-inner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1rem; font-weight: 300; }
.visit-options { display: flex; flex-direction: column; gap: 1rem; }
.visit-option { border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; position: relative; }
.visit-option h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--white); }
.visit-option p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }
.visit-option .v-price { position: absolute; top: 1.5rem; right: 1.5rem; font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.1rem; }
.visit-pay-btn { display: inline-block; margin-top: 1rem; background: var(--gold); color: var(--navy); padding: 0.5rem 1.2rem; text-decoration: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; transition: opacity 0.2s; }
.visit-pay-btn:hover { opacity: 0.85; }

/* ============================================
   CONCIERGE SECTION
   ============================================ */

.concierge-section { background: var(--white); padding: 5rem 0; }
.concierge-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 800px) { .concierge-inner { grid-template-columns: 1fr; } }
.concierge-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); line-height: 1.15; margin-bottom: 1.2rem; }
.concierge-text h2 span { color: var(--gold); }
.concierge-text p { color: var(--light-text); margin-bottom: 1rem; font-size: 1rem; }
.concierge-savings { margin-top: 2rem; border-top: 2px solid var(--ice); padding-top: 1.5rem; }
.saving-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--ice); gap: 1rem; flex-wrap: wrap; }
.saving-row.highlight { background: var(--navy); margin: 0 -1rem; padding: 1rem; border-bottom: none; }
.saving-label { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.saving-row.highlight .saving-label { color: rgba(255,255,255,0.7); }
.saving-numbers { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.saving-old { font-size: 0.85rem; color: var(--light-text); text-decoration: line-through; }
.saving-new { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.saving-diff { font-size: 0.85rem; background: rgba(201,168,76,0.15); color: var(--gold); padding: 0.2rem 0.6rem; font-weight: 600; }
.saving-diff.large { font-size: 1.1rem; font-family: 'Playfair Display', serif; background: none; padding: 0; }
.what-box { background: var(--navy); color: var(--white); padding: 1.5rem; margin-bottom: 1rem; }
.what-box.light { background: var(--ice); color: var(--text); }
.what-box h4 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.what-box.light h4 { color: var(--navy); }
.what-box ul { list-style: none; }
.what-box ul li { font-size: 0.88rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.what-box.light ul li { border-bottom: 1px solid #dde6ee; color: var(--light-text); }
.what-box ul li::before { content: '✓ '; color: var(--gold); }
.what-note { font-size: 0.85rem; color: var(--light-text); font-style: italic; margin-top: 0.5rem; }

/* ============================================
   OCCUPANCY SECTION
   ============================================ */

.occupancy-section { background: var(--navy); color: var(--white); padding: 5rem 0; }
.occupancy-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.occupancy-section .tag { color: var(--gold); }
.occupancy-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.occupancy-section h2 span { color: var(--gold); }
.occupancy-intro { color: rgba(255,255,255,0.65); margin-bottom: 3rem; font-weight: 300; font-size: 1.05rem; }
.occupancy-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 700px) { .occupancy-stats { grid-template-columns: 1fr; } .occupancy-points { grid-template-columns: 1fr; } }
.ostat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ostat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.occupancy-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.opoint { border-top: 2px solid var(--gold); padding-top: 1rem; }
.opoint h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.opoint p { font-size: 0.88rem; color: rgba(255,255,255,0.55); font-weight: 300; }
.occupancy-cta { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.occupancy-cta p { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section { background: var(--ice); padding: 5rem 0; }
.services-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.services-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 2.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(13,27,42,0.08); transition: box-shadow 0.3s; display: flex; flex-direction: column; height: 100%; }
.service-card:hover { box-shadow: 0 6px 24px rgba(13,27,42,0.15); }
.service-card-top { padding: 1.5rem 1.5rem 0.8rem; flex: 1; }
.service-icon { font-size: 1.4rem; margin-bottom: 0.6rem; background: var(--navy); color: var(--white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.service-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: var(--light-text); line-height: 1.5; margin-bottom: 0; }
.service-card-img { width: 100%; height: 160px; object-fit: cover; display: block; flex-shrink: 0; }
.service-card-footer { padding: 1rem 1.5rem; flex-shrink: 0; }
.service-link { font-size: 0.85rem; color: var(--gold); text-decoration: none; font-weight: 600; }
.service-link:hover { text-decoration: underline; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section { background: var(--navy); padding: 4rem 0; text-align: center; color: var(--white); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-weight: 300; }
.cta-section a { display: inline-block; background: var(--gold); color: var(--navy); padding: 1rem 2.5rem; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: opacity 0.2s; }
.cta-section a:hover { opacity: 0.85; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section { background: var(--ice); padding: 4rem 0; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.testimonials-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); padding: 1.5rem; border-top: 3px solid var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.6rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-size: 0.8rem; color: var(--light-text); font-weight: 600; }

/* ============================================
   PRODUCT PAGES
   ============================================ */

.breadcrumb { background: var(--ice); padding: 0.8rem 2rem; font-size: 0.82rem; color: var(--light-text); }
.breadcrumb a { color: var(--light-text); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }
.product-hero { background: var(--navy); padding: 3rem 0; color: var(--white); }
.product-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 800px) { .product-hero-inner { grid-template-columns: 1fr; } }
.product-img-main { width: 100%; max-width: 420px; border-radius: 4px; display: block; margin: 0 auto; background: var(--ice); min-height: 300px; object-fit: contain; }
.product-tier { display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
.product-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.8rem; }
.product-tagline { font-size: 1rem; color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 2rem; }
.product-price-block { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }
.product-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.product-price-note { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.meter-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.deposit-btn { display: block; background: var(--gold); color: var(--navy); text-align: center; padding: 1.1rem; text-decoration: none; font-size: 1rem; font-weight: 700; transition: opacity 0.2s; margin-bottom: 0.6rem; }
.deposit-btn:hover { opacity: 0.85; }
.deposit-btn small { display: block; font-size: 0.75rem; font-weight: 400; opacity: 0.75; margin-top: 0.2rem; }
.back-link { display: inline-block; font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-top: 0.8rem; }
.back-link:hover { color: var(--gold); }
.product-description { background: var(--ice); padding: 4rem 0; }
.product-description-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.product-description h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.product-description p { color: var(--light-text); font-size: 1rem; line-height: 1.8; }
.tabs-section { padding: 4rem 2rem 2rem; max-width: var(--container); margin: 0 auto; }
.tabs-inner { max-width: var(--container); margin: 0 auto; }
.tab-pills { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-pill { background: var(--ice); border: none; padding: 0.5rem 1.4rem; border-radius: 999px; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--light-text); cursor: pointer; transition: background 0.2s, color 0.2s; }
.tab-pill:hover { background: #d8e4ef; color: var(--navy); }
.tab-pill.active { background: var(--navy); color: var(--white); }
.tab-content { animation: fadeIn 0.25s ease; }
.tab-content.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--ice); }
.spec-table td { padding: 0.6rem 0; font-size: 0.88rem; }
.spec-table td:first-child { color: var(--light-text); width: 45%; }
.spec-table td:last-child { color: var(--text); font-weight: 500; }
.faq-section { padding: 0 2rem 4rem; max-width: var(--container); margin: 0 auto; }
.faq-section-inner { max-width: var(--container); margin: 0 auto; }
.faq-section h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--ice); }
.faq-q { font-weight: 600; color: var(--navy); font-size: 0.95rem; padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-a { font-size: 0.88rem; color: var(--light-text); line-height: 1.7; overflow: hidden; transition: max-height 0.35s ease, opacity 0.35s ease; padding-bottom: 0; }
.faq-item.open .faq-a { padding-bottom: 1.2rem; }
.product-cta { background: var(--navy); padding: 4rem 0; text-align: center; color: var(--white); }
.product-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 0.8rem; }
.product-cta p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-weight: 300; }
.product-cta .deposit-btn { max-width: 420px; margin: 0 auto; }

/* STARS */
.star-rating { margin-bottom: 1.5rem; display: flex; gap: 2px; }
.star { font-size: 1.6rem; color: rgba(255,255,255,0.2); }
.star.full { color: var(--gold); }
.star.half { position: relative; display: inline-block; color: rgba(255,255,255,0.2); }
.star.half::after { content: '★'; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; display: block; color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */

footer { background: #060d14; color: rgba(255,255,255,0.4); padding: 1.5rem 2rem; font-size: 0.8rem; }
footer .footer-inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.cookie-settings-btn { background: none; border: none; color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; cursor: pointer; padding: 0; }
.cookie-settings-btn:hover { color: var(--gold); }

/* ============================================
   SERVICES - WIDE 4 COLUMN
   ============================================ */

.services-inner-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.services-inner-wide .tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.6rem; }
.services-inner-wide h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 2.5rem; }
.services-grid-wide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) { .services-grid-wide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-wide { grid-template-columns: 1fr; } }
.service-card-link { text-decoration: none; color: inherit; display: block; }
.service-card-link:hover .service-card { box-shadow: 0 6px 24px rgba(13,27,42,0.15); }

/* ============================================
   CONCIERGE - IMAGE RIGHT
   ============================================ */

.concierge-img { display: flex; align-items: stretch; }
.concierge-img img { width: 100%; object-fit: cover; display: block; max-height: 500px; }

/* ============================================
   FLEX TEASER
   ============================================ */

.flex-teaser-section { background: var(--navy); color: var(--white); padding: 5rem 0; }
.flex-teaser-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 700px) { .flex-teaser-inner { grid-template-columns: 1fr; } }
.flex-teaser-text .tag { color: var(--gold); }
.flex-teaser-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.flex-teaser-text p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.7; font-weight: 300; }
.flex-teaser-sub { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; }
.flex-teaser-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .flex-teaser-stats { grid-template-columns: repeat(3, 1fr); } }
.flex-tstat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.flex-tstat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; line-height: 1.4; }

/* ============================================
   SECURITY TEASER
   ============================================ */

.security-teaser-section { background: var(--ice); padding: 5rem 0; }
.security-teaser-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; direction: rtl; }
.security-teaser-inner > * { direction: ltr; }
@media (max-width: 700px) { .security-teaser-inner { grid-template-columns: 1fr; direction: ltr; } }
.security-teaser-text .tag { color: var(--gold); }
.security-teaser-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.security-teaser-text h2 span { color: var(--gold); }
.security-teaser-text p { color: var(--light-text); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.7; }
.security-teaser-right { display: flex; flex-direction: column; gap: 1.5rem; }
.security-teaser-right img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 4px; }
.security-teaser-quote { border-left: 3px solid var(--gold); padding: 1rem 1.2rem; background: var(--white); }
.security-teaser-quote p { font-size: 0.9rem; color: var(--text); font-style: italic; line-height: 1.6; margin-bottom: 0.5rem; }
.security-teaser-quote span { color: var(--gold); font-size: 0.85rem; display: block; margin-bottom: 0.3rem; }
.security-teaser-quote cite { font-size: 0.78rem; color: var(--light-text); font-style: normal; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   BLOG TEASER
   ============================================ */

.blog-teaser-section { background: var(--white); padding: 5rem 0; }
.blog-teaser-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.blog-teaser-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.blog-teaser-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); }
.blog-teaser-all { font-size: 0.88rem; color: var(--gold); text-decoration: none; font-weight: 600; white-space: nowrap; }
.blog-teaser-all:hover { text-decoration: underline; }
.blog-teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 600px) { .blog-teaser-grid { grid-template-columns: 1fr; } }

/* ============================================
   BLOG PAGE (merged from Gemini)
   ============================================ */

.blog-header { text-align: center; margin-bottom: 60px; }
.blog-header h1 { font-size: 2.8rem; color: var(--navy); margin: 10px 0; }
.blog-header p { font-size: 1.2rem; color: var(--light-text); max-width: 700px; margin: 0 auto; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
@media (max-width: 400px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #dde6ee; text-decoration: none; color: var(--text); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--light-text); margin-bottom: 0.8rem; flex-wrap: wrap; }
.blog-card-cat { background: var(--ice); color: var(--navy); padding: 3px 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.7rem; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; flex-grow: 1; }
.blog-card p { font-size: 0.88rem; color: var(--light-text); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-link { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-decoration: none; margin-top: auto; }

.card-image-wrapper { position: relative; width: 100%; padding-top: 56.25%; background: var(--ice); }
.card-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-meta { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: var(--light-text); margin-bottom: 12px; flex-wrap: wrap; }
.card-category { background: var(--ice); color: var(--navy); padding: 4px 10px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin: 0 0 15px 0; line-height: 1.3; }
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--gold); }
.card-excerpt { font-size: 0.95rem; color: var(--light-text); margin-bottom: 20px; flex-grow: 1; line-height: 1.6; }
.card-btn { align-self: flex-start; color: var(--gold); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s; font-size: 0.88rem; }
.card-btn:hover { color: var(--navy); }

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-hero { background: var(--navy); color: var(--white); padding: 4rem 0; }
.article-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.article-meta { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; flex-wrap: wrap; }
.article-cat { background: var(--gold); color: var(--navy); padding: 4px 10px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; }
.article-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.2; max-width: 760px; }

.article-img-wrap { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.article-img-wrap img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

.article-body { max-width: var(--container); margin: 0 auto; padding: 3rem 2rem 5rem; }
.article-inner { max-width: 700px; }
.article-section { margin-bottom: 2.5rem; }
.article-section h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ice); }
.article-section p { font-size: 0.95rem; color: var(--light-text); line-height: 1.8; margin-bottom: 0.8rem; }
.article-cta { background: var(--navy); padding: 1.8rem; margin-top: 3rem; }
.article-cta p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0; }
.article-cta a { color: var(--gold); font-weight: 600; }
.article-back { display: inline-block; margin-top: 2rem; font-size: 0.85rem; color: var(--light-text); text-decoration: none; }
.article-back:hover { color: var(--gold); }

.related-section { background: var(--ice); padding: 4rem 0; }
.related-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.related-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.related-card { background: var(--white); text-decoration: none; color: var(--text); border-bottom: 3px solid var(--gold); display: block; transition: box-shadow 0.2s; overflow: hidden; }
.related-card:hover { box-shadow: 0 4px 16px rgba(13,27,42,0.1); }
.related-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.related-card-body { padding: 1.2rem 1.5rem 1.5rem; }
.related-card span { font-size: 0.7rem; color: var(--light-text); display: block; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.related-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); line-height: 1.3; }

/* Blog hero */
.blog-hero { background: var(--navy); color: var(--white); padding: 4rem 0; }
.blog-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-top: 0.5rem; }
.blog-hero p { color: rgba(255,255,255,0.65); margin-top: 0.8rem; font-weight: 300; }
.blog-section { padding: 5rem 0; background: var(--white); }
.blog-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ============================================
   CONCIERGE PAGE
   ============================================ */

:root { --orange: #ff6b35; }

.concierge-section-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.concierge-section-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.concierge-section-inner h2 span { color: var(--orange); }
.concierge-section-sub { color: var(--light-text); font-size: 1rem; max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }

.concierge-occupancy-section { background: var(--white); padding: 5rem 0; }
.concierge-solution-section { background: var(--ice); padding: 5rem 0; }
.concierge-pricing-section { background: var(--white); padding: 5rem 0; }
.concierge-fit-section { background: var(--ice); padding: 5rem 0; }
.concierge-incentives-section { background: var(--navy); padding: 5rem 0; }
.concierge-incentives-section .concierge-section-inner h2 { color: var(--white); }
.concierge-incentives-section .concierge-section-sub { color: rgba(255,255,255,0.65); }

.concierge-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.concierge-card { background: var(--white); padding: 2rem; border-left: 4px solid var(--orange); transition: transform 0.3s, box-shadow 0.3s; }
.concierge-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(255,107,53,0.1); }
.concierge-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; }
.concierge-card p { font-size: 0.88rem; color: var(--light-text); line-height: 1.6; }
.concierge-incentives-section .concierge-card { background: rgba(255,255,255,0.05); border-left-color: var(--orange); }
.concierge-incentives-section .concierge-card h3 { color: var(--white); }
.concierge-incentives-section .concierge-card p { color: rgba(255,255,255,0.6); }

.concierge-stat-bar { background: var(--navy); color: rgba(255,255,255,0.8); padding: 1.2rem 1.8rem; margin-top: 2rem; font-size: 0.95rem; line-height: 1.6; }
.concierge-stat-bar strong { color: var(--white); }
.concierge-occupancy-section .concierge-stat-bar,
.concierge-pricing-section .concierge-stat-bar { background: var(--navy); }
.concierge-solution-section .concierge-stat-bar { background: var(--navy); }

.concierge-savings { background: var(--ice); padding: 0; margin-bottom: 0.5rem; }
.concierge-savings .saving-row { padding: 1rem 0; border-bottom: 1px solid #dde6ee; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.concierge-savings .saving-row.highlight { background: var(--navy); padding: 1rem 1.5rem; border-bottom: none; margin: 0; }

.concierge-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 700px) { .concierge-comparison { grid-template-columns: 1fr; } }
.concierge-comparison-box { padding: 2rem; }
.concierge-comparison-box.problem { background: #fff5f3; border: 1px solid #fdd; }
.concierge-comparison-box.solution { background: #f3fff6; border: 1px solid #cef; }
.concierge-comparison-box h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 1rem; }
.concierge-comparison-box h5 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; }
.concierge-comparison-box ul { list-style: none; }
.concierge-comparison-box li { font-size: 0.88rem; padding: 0.3rem 0; color: var(--text); display: flex; gap: 0.5rem; }
.concierge-comparison-box li.bad::before { content: '✗'; color: #e74c3c; flex-shrink: 0; }
.concierge-comparison-box li.good::before { content: '✓'; color: var(--orange); flex-shrink: 0; }
.concierge-comparison-sub { font-size: 0.88rem; color: var(--light-text); margin-bottom: 1rem; }

.concierge-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 700px) { .concierge-fit { grid-template-columns: 1fr; } }
.concierge-fit-box { padding: 2rem; }
.concierge-fit-box.good { background: var(--white); border-left: 4px solid var(--orange); }
.concierge-fit-box.bad { background: #fff5f5; border-left: 4px solid #e74c3c; }
.concierge-fit-box h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; }
.concierge-fit-box ul { list-style: none; }
.concierge-fit-box li { font-size: 0.88rem; color: var(--text); padding: 0.4rem 0; border-bottom: 1px solid var(--ice); display: flex; gap: 0.5rem; }
.concierge-fit-box.good li::before { content: '✓'; color: var(--orange); flex-shrink: 0; }
.concierge-fit-box.bad li::before { content: '✗'; color: #e74c3c; flex-shrink: 0; }

/* ============================================
   CLEANING PAGE
   ============================================ */

.cleaning-hero { background: var(--navy); color: var(--white); padding: 5rem 0; }
.cleaning-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.cleaning-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.cleaning-hero h1 span { color: var(--gold); }
.cleaning-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 620px; font-weight: 300; line-height: 1.7; }
.cleaning-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); margin: 1.5rem 0 0.3rem; }
.cleaning-price span { font-size: 1.4rem; }
.cleaning-price-note { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.cleaning-body { padding: 5rem 0; background: var(--white); }
.cleaning-body-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 700px) { .cleaning-body-inner { grid-template-columns: 1fr; } }
.cleaning-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.cleaning-body p { color: var(--light-text); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.cleaning-list { list-style: none; margin: 1.5rem 0; }
.cleaning-list li { font-size: 0.9rem; color: var(--text); padding: 0.5rem 0; border-bottom: 1px solid var(--ice); display: flex; align-items: flex-start; gap: 0.6rem; }
.cleaning-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.cleaning-cta { background: var(--navy); padding: 4rem 0; text-align: center; color: var(--white); }
.cleaning-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.cleaning-cta p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-weight: 300; }
.cleaning-cta a { display: inline-block; background: var(--gold); color: var(--navy); padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: opacity 0.2s; }
.cleaning-cta a:hover { opacity: 0.85; }

/* CONCIERGE HERO SUPERHOST */
.concierge-superhost { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.concierge-superhost-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; margin-bottom: 0.5rem; }
.concierge-superhost p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }