:root {
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg-soft: #f9fafb;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.07);
    --max-width: 1100px;
  }
  
  * { box-sizing: border-box; }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.5;
  }
  
  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 18px;
  }
  
  /* HEADER */
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--border);
    z-index: 10;
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
  }
  
  .brand__title {
    font-weight: 800;
    font-size: 1.75rem; /* larger per your feedback */
  }
  
  .brand__subtitle {
    font-size: 0.95rem;
    color: var(--muted);
  }
  
  .nav a {
    margin-left: 16px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
  }
  
  /* HERO */
  .hero {
    padding: 22px 0 32px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
  }
  
  .hero-title {
    margin: 0 0 14px;
    line-height: 1.15;
  }
  
  .hero-title__primary {
    display: block;
    /*font-size: clamp(1rem, 3.4vw, 2.4rem);*/
    font-weight: 600;
    white-space: nowrap; /* one line on desktop */
  }
  
  .hero-title__secondary {
    display: block;
    margin-top: 4px;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    font-weight: 400;
    color: #374151;
  }
  
  .lead {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 0 10px;
  }
  
  .ratings-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 14px 0;
  }
  
  .rating-chip {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
    background: #fff;
  }
  
  .cta-row {
    display: flex;
    gap: 12px;
    margin: 16px 0;
  }
  
  .btn {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 600;
  }
  
  .btn--primary {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
  }
  
  .btn--ghost {
    color: var(--text);
    background: #fff;
  }
  
  .trust-list {
    padding-left: 18px;
    color: var(--muted);
    margin: 0 0 16px;
  }
  
  /* Big hero photo (matches your earlier “good” look) */
  .hero-photo {
    margin: 0;
  }
  
  .hero-photo img {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    object-fit: cover;
    display: block;
  }
  
  /* BOOKING CARD */
  .card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .card-header {
    padding: 18px;
    border-bottom: 1px solid var(--border);
  }
  
  .card-header h2 {
    margin: 0 0 8px;
  }
  
  .muted { color: var(--muted); }
  
  /* Tighten dead space under Smoobu widget */
  .booking-embed {
    padding: 10px 14px 2px; /* reduced bottom padding */
  }
  
  #apartmentIframeAll iframe {
    width: 100% !important;
    height: 340px; /* slightly tighter */
    border: 0;
    display: block;
  }
  
  .policy-strip {
    padding: 10px 16px;
    font-size: 0.95rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    margin-top: 0;
  }
  
  .trust-strip {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
  }
  
  /* SECTIONS */
  .section {
    padding: 34px 0;
  }
  
  .section-alt {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .section-head {
    margin-bottom: 14px;
  }
  
  .section h2 {
    margin: 0 0 8px;
  }
  
  /* PHOTOS — restore a clean “big photo card” style */
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
  }
  
  .photo-card {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
  }
  
  .photo-card img {
    width: 100%;
    height: 320px;     /* consistent + big (like your PDF) */
    object-fit: cover; /* avoids letterboxing */
    display: block;
  }
  
  .photo-card figcaption {
    padding: 10px 12px;
    font-size: 0.95rem;
    color: var(--muted);
  }
  
  /* HIGHLIGHTS */
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
  }
  
  .highlight {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
  }
  
  .highlight h3 {
    margin: 0 0 8px;
  }
  
  /* FAQ */
  details {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    margin: 10px 0;
  }
  
  summary {
    cursor: pointer;
    font-weight: 650;
  }
  
  /* CONTACT */
  .contact-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    background: #fff;
    margin-top: 12px;
  }
  
  /* FOOTER */
  .site-footer {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    margin-top: 40px;
  }
  
  .footer-inner {
    font-size: 0.9rem;
    color: var(--muted);
  }
  
  .location-section {
  padding: 4rem 1.5rem;
  background: #0f1115;
  color: #f5f5f5;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.location-header {
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.location-header h2 {
  margin-bottom: 0.5rem;
}

.map {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-title__primary { white-space: normal; }
    .photo-grid { grid-template-columns: 1fr; }
    .photo-card img { height: 320px; }
  }
  
  @media (max-width: 520px) {
    .photo-card img { height: 260px; }
  }
  
