/* ===============================
   SINGLE HOUSEBOAT – PREMIUM
   =============================== */

.gc-single-houseboat {
  background: #D8CBB8;
  color: #2c2c2c;
}

/* GALLERY */
.gc-single-gallery {
  margin: 48px 0 72px;
  overflow: hidden;
}

.gc-gallery-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 24px;
  scroll-snap-type: x mandatory;
}

.gc-gallery-slide {
  flex: 0 0 80%;
  scroll-snap-align: start;
}

.gc-gallery-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
}

/* CONTENT GRID */
.gc-single-content {
  padding-bottom: 120px;
}

.gc-single-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
}

/* DESCRIPTION */
.gc-single-description {
  font-size: 15px;
  line-height: 1.7;
}

.gc-single-description h3 {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  margin: 48px 0 16px;
}

/* AMENITIES */
.gc-single-amenities {
  margin-top: 48px;
}

/* PRICING */
.gc-single-pricing {
  position: sticky;
  top: 120px;
  background: #F1E7D6;
  padding: 32px;
  border-radius: 6px;
}

.gc-price-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.gc-price {
  font-size: 36px;
  font-weight: 500;
  margin: 8px 0 24px;
}

/* CTA */
.gc-whatsapp-btn {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .gc-single-grid {
    grid-template-columns: 1fr;
  }

  .gc-single-pricing {
    position: relative;
    top: auto;
  }

  .gc-gallery-slide {
    flex: 0 0 92%;
  }

  .gc-gallery-slide img {
    height: 320px;
  }
}

/* ===============================
   SINGLE HOUSEBOAT – GALLERY
   =============================== */

.gc-single-gallery {
  margin: 72px 0 96px;
  position: relative;
}

/* Header row */
.gc-gallery-header {
  max-width: 1200px;
  margin: 0 auto 18px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Counter */
.gc-gallery-counter {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Controls */
.gc-gallery-controls {
  display: none;
  gap: 12px;
}

.gc-gallery-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.25);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.gc-gallery-btn:hover {
  background: rgba(0,0,0,0.05);
  transform: translateY(-1px);
}

/* Track */
.gc-gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 24px;
}

.gc-gallery-track::-webkit-scrollbar {
  display: none;
}

/* Slide */
.gc-gallery-slide {
  flex: 0 0 85%;
  max-width: 720px;
  scroll-snap-align: center;
}

.gc-gallery-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 6px;
}

/* Desktop */
@media (min-width: 900px) {
  .gc-gallery-slide {
    flex: 0 0 60%;
  }

  .gc-gallery-controls {
    display: flex;
  }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .gc-gallery-slide img {
    height: 320px;
  }
}

/* ===============================
   SINGLE HOUSEBOAT — HERO (CENTERED)
   =============================== */

.gc-single-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding-top: 96px; /* header offset */
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  text-align: center;
}

.gc-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.gc-single-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 32px;
}

.gc-single-hero__title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin: 0 0 14px;
}

.gc-single-hero__meta {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Mobile */
@media (max-width: 768px) {
  .gc-single-hero {
    min-height: 85vh;
    padding-top: 80px;
  }

  .gc-single-hero__title {
    font-size: clamp(42px, 11vw, 68px);
  }
}

/* Scroll indicator (same language as homepage) */
.gc-single-hero__scroll {
  margin-top: 32px;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.gc-single-hero__scroll span {
  display: inline-block;
  font-size: 22px;
  color: #ffffff;
  opacity: 0.75;
  animation: gc-scroll-bounce 1.6s infinite;
  transition: opacity 0.2s ease;
}

.gc-single-hero__scroll:hover span {
  opacity: 1;
}

/* ===============================
   SINGLE HOUSEBOAT – INTRO TEXT
   =============================== */

.gc-single-intro {
  background: #D8CBB8;
  padding: 96px 24px 88px;
}

.gc-single-intro__inner {
  max-width: 860px;          /* tight editorial width */
  margin: 0 auto;
  text-align: center;
}

.gc-single-intro__text {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0;
}

/* ===============================
   PANORAMIC GALLERY (FINAL)
   =============================== */

.gc-single-gallery {
  width: 100%;
  overflow: hidden; /* clamps movement */
  padding: 64px 0;
  cursor: grab;
}

.gc-single-gallery:active {
  cursor: grabbing;
}

.gc-gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.gc-gallery-slide {
  flex: 0 0 auto;
  width: 70vw;
  max-width: 720px;
}

.gc-gallery-slide img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .gc-gallery-slide {
    width: 88vw;
  }

  .gc-gallery-slide img {
    height: 320px;
  }
}

/* ===============================
   AMENITIES – EDITORIAL LIST
   =============================== */

.gc-amenities {
  background: #F2E7D6;
  padding: 96px 24px 88px;
}

.gc-amenities__title {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #1f1f1f;
}

/* Two-column bullet grid */
.gc-amenities__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 20px;
}

/* Bullet styling */
.gc-amenities__item {
  position: relative;
  padding-left: 18px;

  font-size: 15px;
  line-height: 1.6;
  color: #2c2c2c;
}

/* Custom bullet */
.gc-amenities__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;

  font-size: 18px;
  line-height: 1;
  color: #2c2c2c;
}

/* Mobile */
@media (max-width: 768px) {
  .gc-amenities__list {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

/* ===============================
   EDITORIAL HIGHLIGHTS
   =============================== */

.gc-highlights {
  background: #D8CBB8;
  padding: 96px 24px 104px;
}

.gc-highlights__intro {
  max-width: 520px;
  margin-bottom: 56px;
}

.gc-highlights__intro p {
  font-size: 15px;
  line-height: 1.7;
  color: #2c2c2c;
}

/* Highlight list */
.gc-highlights__content {
  max-width: 720px;
}

/* Individual item */
.gc-highlight {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

/* Number */
.gc-highlight__number {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  min-width: 24px;
}

/* Text */
.gc-highlight__body strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #1f1f1f;
}

.gc-highlight__body p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .gc-highlights {
    padding: 72px 20px;
  }

  .gc-highlight {
    gap: 14px;
  }
}

/* ===============================
   PRICING & OFFERS
   =============================== */

.gc-pricing {
  background: #F2E7D6;
  padding: 120px 24px;
}

.gc-pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: #D8CBB8;
  border-radius: 8px;
  padding: 64px 56px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.gc-pricing-title {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.gc-pricing-subtitle {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 32px;
}

.gc-pricing-divider {
  height: 1px;
  background: #e6e6e6;
  margin: 32px 0;
}

.gc-pricing-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-pricing-unit {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.gc-pricing-amount {
  font-family: "Instrument Serif", serif;
  font-size: 42px;
  font-weight: 400;
  color: #1f1f1f;
}

.gc-pricing-capacity {
  font-size: 13px;
  color: #6b6b6b;
}

.gc-pricing-note {
  font-size: 13px;
  margin-top: 6px;
}

.gc-pricing-discount {
  font-size: 12px;
  color: #7a7a7a;
  margin: 24px 0 32px;
}

/* CTA Button Group */
.gc-pricing-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

/* Base button */
.gc-pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

/* WhatsApp (green) */
.gc-pricing-cta--whatsapp {
  background: #6E7759;
  color: #ffffff;
}

.gc-pricing-cta--whatsapp:hover {
  background: #5e664c;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Contact (neutral dark) */
.gc-pricing-cta--contact {
  background: #2c2c2c;
  color: #ffffff;
}

.gc-pricing-cta--contact:hover {
  background: #1f1f1f;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Mobile safety */
@media (max-width: 600px) {
  .gc-pricing-cta-group {
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gc-pricing {
    padding: 88px 16px;
  }

  .gc-pricing-card {
    padding: 48px 24px;
  }

  .gc-pricing-amount {
    font-size: 36px;
  }
}

/* ===========================
   FAQ SECTION – SPLIT LAYOUT
   =========================== */

.gc-faq {
  background-color: #d8cbb8;
  color: #2c2c2c;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

/* This replaces gc-faq__inner */
.gc-faq__layout {
  display: flex;
  width: 100%;
}

/* LEFT CONTENT */
.gc-faq__content {
  flex: 0 0 55%;
  padding: 96px 80px 96px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.gc-faq__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gc-faq__title {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.gc-faq__intro {
  font-size: 14px;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}

/* ACCORDION */
.gc-faq__items {
  border-top: 1px solid #bfae94;
}

.gc-faq__item {
  border-bottom: 1px solid #bfae94;
}

.gc-faq__question {
  width: 100%;
  background: none;
  border: 0;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.gc-faq__answer {
  display: none;
  padding-bottom: 16px;
  font-size: 13px;
  line-height: 1.6;
  max-width: 520px;
}

.gc-faq__item.is-open .gc-faq__answer {
  display: block;
}

/* FOOTER TEXT */
.gc-faq__footer {
  margin-top: 24px;
  font-size: 13px;
}

.gc-faq__footer a {
  text-decoration: underline;
}

/* RIGHT IMAGE */
.gc-faq__media {
  flex: 0 0 60%;
  position: relative;
  overflow: hidden;
}

.gc-faq__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .gc-faq {
    min-height: auto;
  }

  .gc-faq__layout {
    flex-direction: column;
  }

  .gc-faq__content {
    padding: 72px 48px;
    max-width: 100%;
  }

  .gc-faq__media {
    height: 260px;
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .gc-faq__content {
    padding: 56px 24px 40px;
  }

  .gc-faq__title {
    font-size: 28px;
  }
}

/* ===============================
   THINGS TO KNOW – REFINED EDITORIAL
   =============================== */

.gc-things {
  background: #F2E7D6;
  padding: 56px 24px 40px; /* ⬇ tighter overall block */
}

/* Container stays SAME */
.gc-things .gc-container {
  max-width: 820px;
  margin: 0 auto;
}

/* Title – visually centered */
.gc-things__title {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;      /* ⬇ tighter */
  color: #1f1f1f;
}

/* Grid – compact but breathable */
.gc-things__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 48px;         /* ⬇ reduced */
  row-gap: 16px;
}

/* Item title */
.gc-things__item-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;      /* ⬇ tighter */
  color: #2c2c2c;
}

/* Item text – tighter lines */
.gc-things__item-text {
  font-size: 13px;
  line-height: 1.45;       /* ⬇ key fix */
  color: #2c2c2c;
  opacity: 0.9;
  margin-bottom: 4px;      /* ⬇ pull link closer */
}

/* Link – subtle, close */
.gc-things__link {
  font-size: 12.5px;
  text-decoration: underline;
  color: #2c2c2c;
  opacity: 0.65;
}

.gc-things__link:hover {
  opacity: 1;
}

/* Kill panel height inheritance */
.gc-things.gc-panel {
  min-height: unset;
  height: auto;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {
  .gc-things {
    padding: 48px 24px 32px;
  }

  .gc-things__grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
}