:root {
    --gold:    #D4AF37;
    --gold-lt: #e8cc6a;
    --gold-dk: #a8891d;
    --dark:    #1a1a1a;
    --gray:    #4a4a4a;
    --light:   #f8f6f1;
    --white:   #ffffff;
  }

  .rm-section { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; }

  .rm-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600; color: var(--dark);
    letter-spacing: -.5px; line-height: 1.2;
  }
  .rm-heading span { color: var(--gold); }

  .rm-eyebrow {
    font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: .5rem; display: block;
  }

  .rm-divider {
    width: 48px; height: 2px; background: var(--gold);
    border-radius: 2px; margin: 1rem auto 1.5rem;
  }
  .rm-divider.left { margin-left: 0; }

  .rm-btn {
    display: inline-block; padding: .75rem 2rem;
    border: 2px solid var(--gold); color: var(--gold);
    font-size: .82rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    border-radius: 4px; transition: all .3s; cursor: pointer; background: transparent;
  }
  .rm-btn:hover, .rm-btn.filled { background: var(--gold); color: var(--dark); }
  .rm-btn.filled:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

  /* ── HERO ── */
  .hero-refined {
    position: relative; min-height: 520px;
    background: var(--dark); overflow: hidden; display: flex; align-items: center;
  }
  .hero-refined__bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600&q=80') center/cover no-repeat;
    opacity: .38;
  }
  .hero-refined__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--gold); }
  .hero-refined__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 40px; width: 100%; }
  .hero-refined__tag {
    display: inline-block; background: var(--gold); color: var(--dark);
    font-size: .7rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; padding: .4rem 1.2rem; border-radius: 2px; margin-bottom: 1.5rem;
  }
  .hero-refined__title {
    font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; color: #fff;
    line-height: 1.1; margin-bottom: 1.2rem; max-width: 700px; letter-spacing: -1px;
  }
  .hero-refined__title em { font-style: normal; color: var(--gold); display: block; }
  .hero-refined__sub { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem; }
  .hero-refined__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-refined__stats { display: flex; gap: 2.5rem; margin-top: 4rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
  .hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }

  /* ── ROOM ── */
  .room-section { background: var(--light); padding: 80px 40px; }
  .room-section__head { text-align: center; margin-bottom: 3rem; }
  .room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
  .room-card { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; background: var(--dark); }
  .room-card:first-child { grid-column: 1 / 2; grid-row: 1 / 3; min-height: 500px; }
  .room-card:not(:first-child) { min-height: 230px; }
  @media (max-width: 768px) {
    .room-grid { grid-template-columns: 1fr; }
    .room-card:first-child { grid-column: 1; grid-row: auto; min-height: 260px; }
    .room-card:not(:first-child) { min-height: 200px; }
    .room-section { padding: 60px 20px; }
  }
  .room-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .room-card:hover .room-card__img { transform: scale(1.07); }
  .room-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 60%); }
  .room-card__text { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: #fff; z-index: 2; }
  .room-card__label { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-lt); display: block; margin-bottom: .3rem; }
  .room-card__title { font-size: 1.3rem; font-weight: 600; margin-bottom: .5rem; }
  .room-card__link {
    font-size: .78rem; color: var(--gold-lt); text-decoration: none; letter-spacing: 1px;
    text-transform: uppercase; font-weight: 600; opacity: 0; transform: translateY(6px);
    transition: all .3s; display: inline-block;
  }
  .room-card:hover .room-card__link { opacity: 1; transform: translateY(0); }

  /* ── SOCIAL PROOF ── */
  .social-proof { background: var(--white); padding: 80px 40px; }
  .stats-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: #e8e8e8; border-radius: 12px; overflow: hidden;
    max-width: 1000px; margin: 0 auto 5rem;
  }
  @media (max-width: 640px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } .social-proof { padding: 60px 20px; } }
  .stat-cell { background: var(--white); padding: 2rem 1.5rem; text-align: center; }
  .stat-cell__icon { font-size: 1.4rem; color: var(--gold); margin-bottom: .5rem; display: block; }
  .stat-cell__num { font-size: 2.4rem; font-weight: 700; color: var(--dark); line-height: 1; display: block; }
  .stat-cell__lbl { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; margin-top: .3rem; display: block; }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
  .review-card { background: var(--light); border-radius: 12px; padding: 1.8rem; border-left: 3px solid var(--gold); position: relative; }
  .review-card__stars { color: var(--gold); font-size: .9rem; margin-bottom: .8rem; }
  .review-card__text { font-size: .95rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
  .review-card__author { display: flex; align-items: center; gap: .8rem; }
  .review-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
  .review-card__name { font-size: .9rem; font-weight: 600; color: var(--dark); display: block; }
  .review-card__loc { font-size: .78rem; color: var(--gray); }
  .review-quote { position: absolute; top: 1rem; right: 1.2rem; font-size: 3.5rem; color: var(--gold); opacity: .15; line-height: 1; font-family: Georgia, serif; }

  /* ── PROMO ── */
  .promo-banner { background: var(--dark); padding: 70px 40px; position: relative; overflow: hidden; }
  .promo-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; border-radius: 50%; background: var(--gold); opacity: .06; }
  .promo-banner::after  { content: ''; position: absolute; bottom: -80px; left: -40px;  width: 300px; height: 300px; border-radius: 50%; background: var(--gold); opacity: .04; }
  .promo-banner__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 2; }
  .promo-banner__left { flex: 1; min-width: 260px; }
  .promo-badge { display: inline-block; background: var(--gold); color: var(--dark); font-size: .68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: .35rem 1rem; border-radius: 2px; margin-bottom: 1rem; }
  .promo-banner__title { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: .8rem; }
  .promo-banner__title span { color: var(--gold); }
  .promo-banner__sub { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.6; margin-bottom: 1.8rem; }
  .countdown { display: flex; gap: 12px; flex-wrap: wrap; }
  .cd-block { background: rgba(255,255,255,.08); border: 1px solid rgba(212,175,55,.3); border-radius: 8px; width: 72px; padding: .8rem .5rem; text-align: center; }
  .cd-num { font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; font-variant-numeric: tabular-nums; }
  .cd-lbl { font-size: .62rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: .3rem; display: block; }
  .promo-banner__right { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
  .promo-discount { font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
  .promo-on { font-size: .82rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 2px; }
  @media (max-width: 640px) { .promo-banner { padding: 50px 20px; } .promo-banner__inner { flex-direction: column; } .promo-discount { font-size: 3.5rem; } }

  /* ── BLOG ── */
  .blog-section { background: var(--light); padding: 80px 40px; }
  .blog-section__head { display: flex; align-items: flex-end; justify-content: space-between; max-width: 1100px; margin: 0 auto 3rem; flex-wrap: wrap; gap: 1rem; }
  .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; max-width: 1100px; margin: 0 auto; }
  .blog-card { background: var(--white); border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform .3s, box-shadow .3s; }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
  .blog-card__img-wrap { height: 200px; overflow: hidden; position: relative; }
  .blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .blog-card:hover .blog-card__img { transform: scale(1.05); }
  .blog-card__cat { position: absolute; bottom: 12px; left: 12px; background: var(--gold); color: var(--dark); font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: .3rem .8rem; border-radius: 3px; }
  .blog-card__body { padding: 1.4rem 1.5rem 1.8rem; }
  .blog-card__meta { font-size: .75rem; color: var(--gold); margin-bottom: .6rem; display: flex; gap: .8rem; }
  .blog-card__title { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: .7rem; line-height: 1.4; }
  .blog-card__excerpt { font-size: .87rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.2rem; }
  .blog-card__read { font-size: .75rem; color: var(--gold-dk); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--gold-dk); padding-bottom: 2px; }
  @media (max-width: 640px) { .blog-section { padding: 60px 20px; } .blog-section__head { flex-direction: column; align-items: flex-start; } }

  /* ── FOOTER PREMIUM ── */
  .footer-premium { background: #111; color: #fff; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; }
  .footer-premium__top { border-bottom: 1px solid rgba(255,255,255,.08); padding: 60px 40px 50px; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; }
  @media (max-width: 900px) { .footer-premium__top { grid-template-columns: 1fr 1fr; padding: 40px 20px; } }
  @media (max-width: 560px) { .footer-premium__top { grid-template-columns: 1fr; gap: 2rem; } }
  .footer-brand__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
  .footer-brand__ico { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--dark); flex-shrink: 0; }
  .footer-brand__name strong { display: block; color: #fff; font-size: 1rem; font-weight: 600; }
  .footer-brand__name span  { font-size: .78rem; color: var(--gold); }
  .footer-brand__desc { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.4rem; }
  .footer-social { display: flex; gap: .6rem; }
  .footer-social a { width: 36px; height: 36px; border-radius: 6px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; font-size: .9rem; text-decoration: none; transition: all .25s; }
  .footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.08); }
  .footer-col h4 { font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; padding: 0; }
  .footer-col ul li { margin-bottom: .55rem; }
  .footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-contact-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .8rem; font-size: .87rem; color: rgba(255,255,255,.6); }
  .footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: .85rem; width: 14px; flex-shrink: 0; }
  .footer-premium__middle { border-bottom: 1px solid rgba(255,255,255,.06); padding: 28px 40px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
  @media (max-width: 640px) { .footer-premium__middle { padding: 24px 20px; flex-direction: column; align-items: flex-start; } }
  .footer-seals { display: flex; gap: .6rem; flex-wrap: wrap; }
  .footer-seal { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: .35rem .8rem; font-size: .73rem; color: rgba(255,255,255,.55); }
  .footer-seal i { color: var(--gold); font-size: .75rem; }
  .footer-payments { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
  .footer-payments > span { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; }
  .pay-badge { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; padding: .3rem .65rem; font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 600; }
  .footer-premium__bottom { padding: 22px 40px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; }
  @media (max-width: 640px) { .footer-premium__bottom { padding: 18px 20px; flex-direction: column; align-items: flex-start; } }
  .footer-copyright { font-size: .8rem; color: rgba(255,255,255,.3); }
  .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
  .footer-legal a:hover { color: var(--gold); }

  @media (max-width: 640px) {
    .hero-refined__content { padding: 60px 20px; }
    .hero-refined__stats { gap: 1.5rem; }
  }