
:root {
  --rb-red: #c8161d;
  --rb-red-dark: #760b10;
  --rb-cream: #f7efe3;
  --rb-cream-soft: #faf4ea;
  --rb-charcoal: #1b1717;
  --rb-text: #2b2525;
  --rb-muted: #6b5f5a;
  --rb-border: #e2d4c8;
  --rb-white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--rb-text);
  background: var(--rb-cream-soft);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* Top SMS bar */

.sms-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #00e676;
  color: var(--rb-white);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  animation: smsPulse 2s infinite;
}

.sms-bar a {
  color: inherit;
  text-decoration: none;
}

@keyframes smsPulse { 0%, 100% { background-color: #00e676; } 50% { background-color: #00c853; } }
}

/* Header */

.site-header {
  position: fixed;
  top: 2.75rem; /* sits just below fixed SMS bar */
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--rb-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 80px;
  width: auto;
  display: block;
}

.header-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rb-muted);
}

nav {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--rb-text);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--rb-red);
}

.header-cta {
  display: none;
}

.menu-toggle {
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--rb-cream-soft);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Mobile nav drawer */

.mobile-nav {
  display: none;
  position: fixed;
  top: 4.1rem; /* bar + header approximate height */
  left: 0;
  right: 0;
  background: var(--rb-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 997;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.25rem 0.8rem;
}

.mobile-nav li + li {
  margin-top: 0.4rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--rb-text);
  font-weight: 500;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #f8c9b4 0, #b01017 32%, #1a0909 70%);
  color: var(--rb-white);
  padding: 4.4rem 1.25rem 3.2rem;
  margin-top: 0; /* header handles spacing */
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 2.5rem;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffe7d5;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #ffe9da;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.4rem 0 0.4rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff2c38, #b80f17);
  color: var(--rb-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.38);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--rb-white);
}

.hero-meta {
  margin-top: 1.2rem;
  font-size: 0.86rem;
  color: #ffe4d1;
}

.hero-meta a {
  color: inherit;
}

/* Utility sections */

.section {
  padding: 3.2rem 1.25rem;
}

.section-alt {
  background: var(--rb-cream);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  color: var(--rb-charcoal);
}

.section-lead {
  font-size: 0.97rem;
  color: var(--rb-muted);
  max-width: 36rem;
}

/* Booking steps */

.steps-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.step-card {
  background: var(--rb-white);
  border-radius: 18px;
  padding: 1.3rem 1.25rem;
  box-shadow: 0 12px 40px rgba(15,6,2,0.06);
  border: 1px solid rgba(255,255,255,0.7);
}

.step-number {
  height: 26px;
  width: 26px;
  border-radius: 999px;
  background: #00e676;
  color: var(--rb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--rb-white);
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 14px 45px rgba(15,6,2,0.08);
  border: 1px solid rgba(0,0,0,0.03);
}

.price-card.popular {
  border: 2px solid var(--rb-red);
  box-shadow: 0 18px 55px rgba(184,16,23,0.24);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
}

.badge-popular {
  background: #ffe5e5;
  color: #a20b14;
  border-color: rgba(162,11,20,0.35);
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rb-charcoal);
  margin: 0.2rem 0;
}

.price-note {
  font-size: 0.8rem;
  color: var(--rb-muted);
}

.price-footer {
  font-size: 0.8rem;
  color: var(--rb-muted);
  margin-top: 0.7rem;
}

/* What we take */

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--rb-white);
  border: 1px solid var(--rb-border);
  font-size: 0.8rem;
  color: var(--rb-text);
}

/* Areas */

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.area-pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px dashed rgba(0,0,0,0.1);
  font-size: 0.78rem;
  color: var(--rb-muted);
}

/* Reviews */

.reviews-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--rb-white);
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 10px 35px rgba(15,6,2,0.06);
}

.review-stars {
  color: #f6b816;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}


/* What we take image grid */

.what-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.what-card {
  background: var(--rb-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,6,2,0.08);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.what-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.what-card h3 {
  font-size: 1rem;
  margin: 0.85rem 1rem 0.2rem;
  color: var(--rb-charcoal);
}

.what-card p {
  font-size: 0.85rem;
  color: var(--rb-muted);
  margin: 0 1rem 1rem;
}

/* Desktop grid for What We Take */

@media (min-width: 768px) {
  .what-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Footer */

.footer {
  background: var(--rb-charcoal);
  color: rgba(255,255,255,0.82);
  padding: 2.2rem 1.25rem 4.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  font-size: 0.85rem;
}

/* Mobile bottom bar */

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rb-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  z-index: 999;
}

.mobile-bottom-bar a {
  flex: 1;
  padding: 0.7rem 0.4rem 0.8rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.mobile-bottom-bar a:first-child {
  background: #ffffff;
  color: var(--rb-text);
}

.mobile-bottom-bar a:last-child {
  background: #00e676;
  color: var(--rb-white);
}

/* Desktop styles */

@media (min-width: 768px) {
  .header-logo img {
    height: 96px;
  }
  nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
  .header-cta {
    display: block;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    align-items: center;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-direction: row;
  }
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Reduce bottom bar on desktop */

@media (min-width: 768px) {
  .mobile-bottom-bar {
    position: static;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 2rem;
  }
}


body {
  padding-top: 7.5rem; /* space for SMS bar + header */
}


/* Step card images */
.step-card {
  overflow: hidden;
}

.step-card img.step-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
  margin-top: 0.85rem;
}
