﻿/* RoyalSonic Deals — aligned with www.royalsonic.com */
:root {
  --rs-red: #e30613;
  --rs-red-dark: #b50510;
  --rs-ink: #1a1a1a;
  --rs-muted: #5c5c5c;
  --rs-line: #e8e8e8;
  --rs-bg: #ffffff;
  --rs-soft: #f6f7f9;
  --rs-font: "Poppins", "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rs-font);
  color: var(--rs-ink);
  background: var(--rs-bg);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--rs-red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  border-bottom: 1px solid var(--rs-line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-link img { height: 42px; width: auto; }
.nav-links { display: flex; flex-wrap: wrap; gap: 0.35rem 1.15rem; font-size: 0.92rem; font-weight: 500; }
.nav-links a { color: var(--rs-ink); text-decoration: none; }
.nav-links a:hover { color: var(--rs-red); }

.hero {
  background:
    linear-gradient(180deg, rgba(227, 6, 19, 0.06), transparent 55%),
    var(--rs-soft);
  border-bottom: 1px solid var(--rs-line);
  padding: 3.25rem 1.25rem 2.75rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 0.95fr; align-items: start; }
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--rs-ink);
}
.hero .lede { margin: 0 0 1.25rem; color: var(--rs-muted); font-size: 1.05rem; max-width: 36rem; }
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rs-red);
  background: #fde8ea;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.package-card {
  background: #fff;
  border: 1px solid var(--rs-line);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.package-card h2 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.price-row { display: flex; align-items: baseline; gap: 0.4rem; margin: 0.75rem 0 1rem; }
.price-row .amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--rs-red); }
.price-row .once { color: var(--rs-muted); font-size: 0.9rem; }
.package-card ul { margin: 0; padding: 0; list-style: none; }
.package-card li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.package-card li:last-child { border-bottom: 0; }
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rs-red);
}

.section { max-width: 1100px; margin: 0 auto; padding: 2.75rem 1.25rem; }
.section h2 { margin: 0 0 0.5rem; font-size: 1.55rem; letter-spacing: -0.02em; }
.section .sub { margin: 0 0 1.5rem; color: var(--rs-muted); }

.redeem-card {
  background: #fff;
  border: 1px solid var(--rs-line);
  border-radius: 14px;
  padding: 1.5rem;
  max-width: 520px;
}
.form-grid { display: grid; gap: 0.85rem; }
label { display: grid; gap: 0.3rem; font-size: 0.86rem; font-weight: 600; color: var(--rs-ink); }
input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
  background: #fff;
}
input:focus { outline: 2px solid rgba(227, 6, 19, 0.25); border-color: var(--rs-red); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--rs-red); color: #fff; }
.btn-primary:hover { background: var(--rs-red-dark); text-decoration: none; }
.btn-primary:disabled { opacity: 0.65; cursor: wait; }
.btn-ghost {
  background: transparent;
  color: var(--rs-ink);
  border: 1px solid var(--rs-line);
}
.form-msg { margin: 0.75rem 0 0; font-size: 0.92rem; }
.form-msg.error { color: #b50510; }
.form-msg.ok { color: #0d7a3f; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.35rem; }

.suite-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.suite-grid span {
  padding: 0.4rem 0.75rem;
  background: var(--rs-soft);
  border: 1px solid var(--rs-line);
  border-radius: 999px;
  font-size: 0.85rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--rs-line);
  background: #111;
  color: #cfcfcf;
  padding: 2.25rem 1.25rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.footer-links a { color: #eee; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-copy { font-size: 0.82rem; color: #9a9a9a; margin: 0; }

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