:root {
      --bg: #f3f4f6;
      --bg-soft: #ffffff;
      --card: #ffffff;
      --card-soft: #f9fafb;

      --accent: #ef4444;
      --accent-soft: rgba(239, 68, 68, 0.1);
      --accent-strong: #b91c1c;

      --text: #111827;
      --muted: #6b7280;

      --border: #e5e7eb;
      --danger: #b91c1c;

      --radius-xl: 18px;
      --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Top nav */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.7rem 1.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

 .brand {
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-weight:700;
  text-decoration:none;        /* remove underline */
  color:var(--text);           /* use normal text color */
}

.brand:hover {
  color:var(--accent-strong);  /* a bit more red on hover */
}

.brand-logo {
  width:28px;
  height:28px;
  border-radius:999px;
  /* more red, less orange */
  background:linear-gradient(135deg,#dc2626,#b91c1c);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:0.9rem;
  box-shadow:0 0 10px rgba(220,38,38,0.6);
}

.brand {
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-weight:700;
  color:var(--text);
  text-decoration:none;
}
.brand:hover {
  color:var(--accent-strong);
}
    .nav-links {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-size: 0.86rem;
    }

    .nav-links a {
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--text);
      text-decoration: none;
    }

    .nav-cta {
      padding: 0.4rem 0.95rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #ef4444, #b91c1c);
      color: white !important;
      box-shadow: 0 8px 20px rgba(248, 113, 113, 0.5);
      font-weight: 600;
      border: none;
    }

    .nav-cta:hover {
      filter: brightness(1.05);
      text-decoration: none;
    }

    @media (max-width: 780px) {
      .nav-links {
        display: none;
      }
    }

    /* Hero / layout */
    main {
      max-width: var(--max-width);
      margin: 1.5rem auto 2.5rem;
      padding: 0 1.2rem 3rem;
    }

    .breadcrumb {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .breadcrumb a {
      color: var(--muted);
    }

    .breadcrumb span {
      color: var(--text);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
      gap: 1.75rem;
      align-items: flex-start;
    }

    @media (max-width: 960px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: var(--card);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 1.6rem 1.6rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .card-inner {
      position: relative;
      z-index: 1;
    }

    .hero-title {
      font-size: 2rem;
      font-weight: 750;
      letter-spacing: 0.02em;
      margin-bottom: 0.25rem;
      color: var(--text);
    }

    .hero-location {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-bottom: 1rem;
    }

    .badge {
      font-size: 0.78rem;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #f9fafb;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .badge--hot {
      border-color: rgba(248, 113, 113, 0.7);
      background: #fef2f2;
      color: #b91c1c;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    /* IMAGE AREA */
    .hero-media {
      margin: 0.9rem 0 1.1rem;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card-soft);
    }

    .hero-media-row {
      display: grid;
      grid-template-columns: 2fr 1.3fr;
      gap: 2px;
    }

    .hero-media-main,
    .hero-media-side {
      position: relative;
      overflow: hidden;
      background: #e5e7eb;
    }

    .hero-media-main img,
    .hero-media-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease-out;
    }

    .hero-media-main img:hover,
    .hero-media-side img:hover {
      transform: scale(1.04);
    }

    .hero-media-caption {
      font-size: 0.78rem;
      color: var(--muted);
      padding: 0.45rem 0.7rem 0.55rem;
      border-top: 1px solid var(--border);
      background: #f9fafb;
    }

    @media (max-width: 780px) {
      .hero-media-row {
        grid-template-columns: 1fr;
      }
    }

    .hero-lede {
      font-size: 0.98rem;
      color: var(--muted);
      margin-bottom: 1.1rem;
      max-width: 90%;
    }

    @media (max-width: 960px) {
      .hero-lede {
        max-width: 100%;
      }
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, #ef4444, #b91c1c);
      color: white;
      font-size: 0.94rem;
      font-weight: 600;
      box-shadow: 0 14px 35px rgba(248, 113, 113, 0.6);
      text-decoration: none;
    }

    .btn-primary span {
      font-size: 1.1rem;
    }

    .btn-primary:hover {
      filter: brightness(1.05);
      text-decoration: none;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.7rem 1.2rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #ffffff;
      font-size: 0.88rem;
      color: var(--muted);
      cursor: pointer;
      text-decoration: none;
    }

    .btn-ghost:hover {
      background: #f3f4f6;
      color: var(--text);
      text-decoration: none;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1.3rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: #f9fafb;
      border: 1px solid var(--border);
    }

    .hero-meta-item strong {
      color: var(--text);
      font-weight: 600;
    }

    /* Sidebar card */
    .sidebar-card {
      background: var(--card);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.4rem 1.3rem;
      position: relative;
      overflow: hidden;
    }

    .sidebar-inner {
      position: relative;
      z-index: 1;
    }

    .sidebar-title {
      font-size: 1.02rem;
      font-weight: 650;
      margin-bottom: 0.25rem;
      color: var(--text);
    }

    .sidebar-subtitle {
      font-size: 0.83rem;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }

    .price-highlight {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.15rem;
    }

    .price-highlight span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--muted);
      margin-left: 0.3rem;
    }

    .price-note {
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .slot-label {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 0.45rem;
    }

    .slot-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.85rem;
    }

    .slot-pill {
      font-size: 0.78rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #f9fafb;
    }

    .note-badge {
      margin-top: 0.8rem;
      font-size: 0.78rem;
      color: var(--muted);
      display: flex;
      gap: 0.35rem;
      align-items: center;
    }

    .note-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    /* Body sections */
    .below-hero {
      margin-top: 1.8rem;
      display: grid;
      grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
      gap: 1.7rem;
      align-items: flex-start;
    }

    @media (max-width: 960px) {
      .below-hero {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .subcard {
      background: var(--card);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      padding: 1.4rem 1.5rem;
      box-shadow: var(--shadow-soft);
    }

    .subcard + .subcard {
      margin-top: 1.1rem;
    }

    .section-heading {
      font-size: 1.05rem;
      font-weight: 650;
      margin-bottom: 0.3rem;
      color: var(--text);
    }

    .section-subtitle {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 0.8rem;
    }

    h3 {
      font-size: 0.97rem;
      margin-top: 0.9rem;
      margin-bottom: 0.2rem;
      color: var(--text);
    }

    p {
      font-size: 0.9rem;
      margin: 0 0 0.55rem;
      color: #374151;
    }

    ul {
      margin: 0.2rem 0 0.7rem;
      padding-left: 1.1rem;
    }

    li {
      font-size: 0.9rem;
      color: #4b5563;
      margin-bottom: 0.2rem;
    }

    .key-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 0.7rem;
      margin-top: 0.4rem;
    }

    .key-pill {
      background: #f9fafb;
      border-radius: 0.9rem;
      border: 1px solid var(--border);
      padding: 0.6rem 0.7rem;
      font-size: 0.86rem;
    }

    .key-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    .key-value {
      margin-top: 0.18rem;
      font-weight: 600;
      color: var(--text);
    }

    .alert {
      border-radius: 0.9rem;
      padding: 0.7rem 0.8rem;
      font-size: 0.85rem;
      background: #fef2f2;
      border: 1px solid rgba(248, 113, 113, 0.9);
      color: #b91c1c;
      margin-top: 0.5rem;
    }

    /* FAQ */
    .faq-item {
      border-top: 1px solid var(--border);
      padding: 0.6rem 0;
    }

    .faq-item:first-of-type {
      border-top: none;
      padding-top: 0;
    }

    .faq-question {
      font-size: 0.93rem;
      font-weight: 600;
      color: var(--text);
    }

    .faq-answer {
      font-size: 0.86rem;
      color: var(--muted);
      margin-top: 0.2rem;
    }

    footer {
      border-top: 1px solid var(--border);
      background: #ffffff;
      padding: 1.4rem 1.2rem 2rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.8rem;
    }

    .footer-inner a {
      color: var(--muted);
    }

    .footer-inner a:hover {
      color: var(--text);
    }

    .hero-cta-row {
  margin-bottom: 1.5rem; 
}


    