:root {
  --rc-green: #1f6f54;
  --rc-green-dark: #154a39;
  --rc-accent: #d6a64a;
  --rc-accent-dark: #b8862f;
  --rc-cream: #f7f4ee;
  --rc-text: #1f2a26;
  --rc-muted: #5a6a64;
  --rc-radius: 14px;
  --rc-shadow: 0 10px 30px rgba(20, 50, 40, .08);
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--rc-text);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; }

h1, h2, h3, h4, .section-title, .navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.01em;
}

.py-6 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.bg-soft { background: var(--rc-cream); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--rc-green);
  margin-bottom: .8rem;
  font-family: 'Inter', sans-serif;
}
.eyebrow.light { color: var(--rc-accent); }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.btn-accent {
  background: var(--rc-accent);
  color: #1f1a10;
  border: none;
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: 999px;
  transition: all .25s ease;
}
.btn-accent:hover {
  background: var(--rc-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(184, 134, 47, .35);
}
.btn-outline-light {
  border-radius: 999px;
  padding: .75rem 1.6rem;
  font-weight: 500;
}

/* ---------- Navbar ---------- */
.navbar {
  background: transparent;
  transition: background .35s ease, padding .25s ease, box-shadow .25s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(20, 40, 32, .92);
  backdrop-filter: blur(8px);
  padding: .55rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.navbar .navbar-brand {
  font-size: 1.4rem;
  color: #fff !important;
}
.navbar .navbar-brand i { color: var(--rc-accent); }
.navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  margin: 0 .35rem;
  position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff !important; }
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: .8rem; right: .8rem; bottom: -4px;
  height: 2px;
  background: var(--rc-accent);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('../img/south-view.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 35, 28, .55) 0%, rgba(15, 35, 28, .35) 50%, rgba(15, 35, 28, .75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 6rem 1rem 4rem; }
.hero h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.hero .lead { font-size: 1.2rem; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero-badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: .55rem 1.1rem;
  font-weight: 500;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: 1.6rem;
  z-index: 3;
  animation: bounce 2.4s infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--rc-radius);
  box-shadow: var(--rc-shadow);
}
.about-img.main { grid-row: 1 / span 2; height: 452px; }
.about-img.small { }
.about-img.tall { }

@media (max-width: 575px) {
  .about-grid { grid-template-rows: 160px 160px; }
  .about-img.main { height: 332px; }
}

.stat {
  background: var(--rc-cream);
  padding: 1.1rem 1rem;
  border-radius: var(--rc-radius);
  text-align: center;
  border: 1px solid rgba(31, 111, 84, .1);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rc-green);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  color: var(--rc-muted);
  margin-top: .35rem;
}

/* ---------- Service cards ---------- */
.service-card {
  background: #fff;
  padding: 2rem 1.6rem;
  border-radius: var(--rc-radius);
  box-shadow: var(--rc-shadow);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(0,0,0,.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(20, 50, 40, .15);
}
.service-card.featured {
  background: linear-gradient(160deg, var(--rc-green) 0%, var(--rc-green-dark) 100%);
  color: #fff;
}
.service-card.featured h3,
.service-card.featured .price .amount { color: #fff; }
.service-card.featured .service-icon {
  background: rgba(255,255,255,.15);
  color: var(--rc-accent);
}
.service-card .service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(31, 111, 84, .1);
  color: var(--rc-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.service-card p {
  color: var(--rc-muted);
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
.service-card.featured p { color: rgba(255,255,255,.8); }
.price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  border-top: 1px dashed rgba(0,0,0,.1);
  padding-top: 1rem;
}
.service-card.featured .price { border-top-color: rgba(255,255,255,.2); }
.price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rc-green);
}
.price .unit {
  color: var(--rc-muted);
  font-size: .9rem;
}
.service-card.featured .price .unit { color: rgba(255,255,255,.7); }
.ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--rc-accent);
  color: #1f1a10;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .7rem;
  border-radius: 999px;
}

/* ---------- Amenities ---------- */
.amenity {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: var(--rc-cream);
  border-radius: var(--rc-radius);
  height: 100%;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.amenity:hover {
  background: #fff;
  border-color: rgba(31, 111, 84, .15);
  box-shadow: var(--rc-shadow);
  transform: translateY(-3px);
}
.amenity i {
  font-size: 1.4rem;
  color: var(--rc-green);
  flex-shrink: 0;
}
.amenity span {
  font-size: .92rem;
  font-weight: 500;
}

/* ---------- Gallery ---------- */
.gallery-grid .gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--rc-radius);
  position: relative;
  cursor: pointer;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '\F4FE';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,.0);
  opacity: 0;
  transition: all .3s ease;
}
.gallery-item:hover::after {
  background: rgba(0,0,0,.35);
  opacity: 1;
}

/* ---------- Nearby ---------- */
.nearby-card {
  background: #fff;
  padding: 1.8rem 1.6rem;
  border-radius: var(--rc-radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 20px rgba(20, 50, 40, .05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.nearby-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--rc-green), var(--rc-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.nearby-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(20, 50, 40, .12);
  border-color: rgba(31, 111, 84, .15);
}
.nearby-card:hover::before { transform: scaleX(1); }
.nearby-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(31, 111, 84, .1);
  color: var(--rc-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.nearby-meta {
  font-size: .8rem;
  color: var(--rc-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: .55rem;
}
.nearby-meta i { color: var(--rc-accent); margin-right: 4px; }
.nearby-card h3 {
  font-size: 1.25rem;
  margin-bottom: .55rem;
}
.nearby-card p {
  color: var(--rc-muted);
  font-size: .94rem;
  margin: 0;
}

/* ---------- House boat ---------- */
.houseboat-section {
  background:
    linear-gradient(160deg, rgba(15, 35, 28, .92) 0%, rgba(31, 111, 84, .85) 100%),
    url('../img/southwest-view.jpg') center/cover no-repeat;
  background-attachment: scroll, fixed;
  color: #fff;
  position: relative;
}
.houseboat-section .section-title { color: #fff; }
.text-white-75 { color: rgba(255, 255, 255, .8); }

.houseboat-video-wrap {
  position: relative;
  border-radius: var(--rc-radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  background: #000;
  aspect-ratio: 16 / 9;
}
.houseboat-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none; /* no play/pause/seek interaction */
}
.houseboat-video::-webkit-media-controls,
.houseboat-video::-webkit-media-controls-enclosure,
.houseboat-video::-webkit-media-controls-panel,
.houseboat-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.video-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: rgba(15, 35, 28, .55);
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  letter-spacing: .04em;
  pointer-events: none;
  transition: opacity .4s ease;
}
.video-loader i {
  font-size: 2.4rem;
  color: var(--rc-accent);
  animation: pulse 1.6s ease-in-out infinite;
}
.video-loader.hidden { opacity: 0; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.12); opacity: 1; }
}

.houseboat-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.houseboat-features li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .55rem 0;
  color: rgba(255, 255, 255, .85);
}
.houseboat-features i {
  color: var(--rc-accent);
  font-size: 1.15rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.houseboat-price {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--rc-radius);
  padding: .8rem 1.3rem;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.houseboat-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--rc-accent);
}

/* ---------- Location ---------- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1rem;
}
.info-list li {
  display: flex;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.info-list li:last-child { border-bottom: none; }
.info-list i {
  color: var(--rc-green);
  font-size: 1.15rem;
  margin-top: 3px;
}
.info-list a {
  color: var(--rc-text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(31, 111, 84, .4);
}
.info-list a:hover { color: var(--rc-green); }

.map-wrap {
  border-radius: var(--rc-radius);
  overflow: hidden;
  height: 460px;
  border: 1px solid rgba(0,0,0,.08);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ---------- Contact ---------- */
#contact { background: linear-gradient(160deg, #102b22 0%, #1d4a3a 100%); }
.contact-points { display: grid; gap: .9rem; }
.contact-point {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rc-radius);
  color: #fff;
  text-decoration: none;
  transition: all .25s ease;
}
.contact-point:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(4px);
  color: #fff;
}
.contact-point i {
  font-size: 1.4rem;
  color: var(--rc-accent);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(214, 166, 74, .12);
  border-radius: 12px;
}
.contact-point span {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-point strong { font-size: 1rem; }

.contact-form {
  background: rgba(255,255,255,.05);
  padding: 2rem;
  border-radius: var(--rc-radius);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-form .form-label {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
}
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 10px;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,.45); }
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--rc-accent);
  color: #fff;
  box-shadow: 0 0 0 .2rem rgba(214, 166, 74, .25);
}

/* ---------- Footer ---------- */
.footer {
  background: #0d211a;
  color: rgba(255,255,255,.7);
}
.footer strong { color: #fff; }
.footer i { color: var(--rc-accent); }

.footer-brand { display: inline; }
.footer-credit {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  white-space: nowrap;
}
.footer-credit a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-weight: 500;
  margin-left: .35rem;
  transition: color .2s ease;
}
.footer-credit a:hover { color: var(--rc-accent); }
.footer-credit .credit-sep {
  color: rgba(255, 255, 255, .25);
  margin: 0 .55rem;
}
.footer-credit .credit-phone::before {
  content: '·';
  color: rgba(255, 255, 255, .25);
  margin-right: .55rem;
  margin-left: .15rem;
}

@media (max-width: 575px) {
  .footer-credit { display: block; white-space: normal; margin-top: .4rem; }
  .footer-credit .credit-sep { display: none; }
}

/* ---------- Lightbox ---------- */
#lightbox .modal-content { background: transparent; }
#lightbox img { max-height: 88vh; object-fit: contain; }

@media (max-width: 991px) {
  .navbar.scrolled, .navbar { background: rgba(20, 40, 32, .96); }
  .navbar-collapse { padding: 1rem 0; }
  /* Fixed backgrounds are sized to viewport on mobile and often cause a
     few-pixel horizontal gap. Use scroll instead. */
  .houseboat-section { background-attachment: scroll, scroll; }
}

@media (max-width: 575px) {
  .container, .container-fluid { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero .lead { font-size: 1.05rem; }
}
