/* Golf Hotels 2026 — Landing + Profile */

/* ===========================
   LANDING PAGE
   =========================== */

/* Hero */
.gh-hero {
  background: linear-gradient(135deg, #166534, #04AE79);
  padding: 48px 16px 44px;
  color: #fff;
  text-align: center;
}
.gh-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.gh-hero p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 24px;
}
.gh-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}
.gh-hero__stat-sep {
  opacity: 0.5;
}
.gh-search-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.gh-search-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.gh-search-input:focus {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Container */
.gh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Sections */
.gh-section {
  padding: 40px 0;
}
.gh-section--alt {
  background: #fafaf8;
}
.gh-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.gh-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.gh-section__link {
  font-size: 14px;
  font-weight: 600;
  color: #04AE79;
  text-decoration: none;
}
.gh-section__link:hover {
  text-decoration: underline;
}

/* Grids */
.gh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Destination Pills (horizontal scroll) */
.gh-dest-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.gh-dest-scroll::-webkit-scrollbar {
  display: none;
}
.gh-dest-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.gh-dest-pill:hover {
  border-color: #04AE79;
  box-shadow: 0 2px 8px rgba(4,174,121,0.12);
}
.gh-dest-pill__img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8e8e8;
}
.gh-dest-pill__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.gh-dest-pill__count {
  background: #ecfdf5;
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Hotel Card */
.gh-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.gh-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.gh-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #e8e8e8;
}
.gh-card__img--placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
}
.gh-card__body {
  padding: 14px 16px;
}
.gh-card__stars {
  color: #C5A55A;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.gh-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gh-card__meta {
  font-size: 13px;
  color: #666;
  margin: 0;
}
.gh-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

/* Package Card Variant */
.gh-card--package {
  border-color: #f0e6c8;
}
.gh-card--package:hover {
  border-color: #C5A55A;
}

/* Badges */
.gh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.gh-badge--rating {
  background: #fef3c7;
  color: #92400e;
}
.gh-badge--reviews {
  background: #ecfdf5;
  color: #065f46;
}
.gh-badge--price {
  background: #faf3e0;
  color: #b8912e;
  font-weight: 700;
}
.gh-badge--featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #04AE79;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.gh-badge--package {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #C5A55A, #b8912e);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
}

/* Review Card */
.gh-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gh-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gh-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2B7860;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.gh-review-card__author {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.gh-review-card__date {
  font-size: 12px;
  color: #999;
}
.gh-review-score {
  margin-left: auto;
  background: #04AE79;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-review-card__text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gh-review-card__hotel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
}
.gh-review-hotel-img {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  background: #e8e8e8;
}
.gh-review-hotel-name {
  font-size: 13px;
  font-weight: 600;
  color: #04AE79;
}

/* Country Buttons */
.gh-country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gh-country-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.15s;
}
.gh-country-btn:hover {
  background: #04AE79;
  color: #fff;
  border-color: #04AE79;
}
.gh-country-btn__count {
  font-weight: 400;
  color: #999;
  font-size: 13px;
}
.gh-country-btn:hover .gh-country-btn__count {
  color: rgba(255,255,255,0.8);
}

/* CTA Footer */
.gh-cta {
  background: linear-gradient(135deg, #166534, #04AE79);
  padding: 48px 16px;
  text-align: center;
  color: #fff;
}
.gh-cta h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}
.gh-cta p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0 0 24px;
}
.gh-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.gh-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}
.gh-cta__btn:hover {
  transform: translateY(-2px);
}
.gh-cta__btn--primary {
  background: #fff;
  color: #166534;
}
.gh-cta__btn--secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}


/* ===========================
   PROFILE PAGE
   =========================== */

.gh-profile {
  background: #fafaf8;
  min-height: 100vh;
}

/* Section labels + titles */
.gh-psection { margin-bottom: 32px; }
.gh-psection__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #04AE79;
  margin-bottom: 6px;
}
.gh-psection__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 12px;
}
.gh-psection__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #04AE79;
  border-radius: 2px;
}

/* Profile Hero (85vh) */
.gh-profile-hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background: #1a1a1a;
}
.gh-profile-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gh-profile-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 32px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
}
.gh-profile-hero__content {
  max-width: 1200px;
  margin: 0 auto;
}
.gh-profile-hero__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(4,174,121,0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.gh-profile-hero__stars {
  color: #C5A55A;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.gh-profile-hero__title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}
.gh-profile-hero__subtitle { margin-bottom: 4px; }
.gh-profile-hero__location {
  font-size: 16px;
  opacity: 0.9;
}
.gh-profile-hero__scores {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.gh-profile-hero__score-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  min-width: 80px;
}
.gh-profile-hero__score-pill--gp {
  background: rgba(4,174,121,0.9);
  border-color: rgba(4,174,121,0.9);
}
.gh-profile-hero__score-value {
  font-size: 20px;
  font-weight: 800;
}
.gh-profile-hero__score-label {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 2px;
}

/* Gallery Grid (below hero) */
.gh-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  max-width: 1200px;
  margin: 4px auto 0;
  padding: 0 16px;
}
.gh-gallery-grid__first {
  grid-row: 1 / 3;
  display: block;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  text-decoration: none;
}
.gh-gallery-grid__more {
  display: contents;
}
.gh-gallery-grid__more a {
  display: block;
  height: 138px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  text-decoration: none;
}
.gh-gallery-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 12px;
  border-radius: 0 0 4px 4px;
}
.gh-gallery-grid__more-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

/* Profile Name (used in hero, kept for compat) */
.gh-profile-hero__name {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

/* Profile Layout */
.gh-profile-layout {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 16px 60px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.gh-profile-main {
  min-width: 0;
}
.gh-profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Community Header / Bar */
.gh-community-header {
  background: linear-gradient(135deg, #04AE79 0%, #028a5e 100%);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.gh-community-header__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.gh-community-header__score {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.gh-community-header__count {
  font-size: 15px;
  font-weight: 700;
}
.gh-community-header__label {
  font-size: 13px;
  opacity: 0.85;
}
.gh-community-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.gh-community-bar__label {
  font-size: 13px;
  min-width: 110px;
  flex-shrink: 0;
  opacity: 0.9;
}
.gh-community-bar__track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  overflow: hidden;
}
.gh-community-bar__fill {
  height: 100%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.3s;
}
.gh-community-bar__value {
  font-size: 13px;
  font-weight: 700;
  min-width: 28px;
  text-align: right;
}
/* legacy compat */
.gh-community-bar__score {
  background: #04AE79;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-community-bar__count {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Meta Scores (sub-ratings) */
.gh-meta-scores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.gh-meta-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8faf9;
  border-radius: 8px;
}
.gh-meta-score__label {
  font-size: 13px;
  color: #555;
}
.gh-meta-score__value {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Review Card (profile page — same base, extended) */
.gh-review-card--profile {
  border: 1px solid #e2e8f0;
}
.gh-review-card--profile .gh-review-avatar {
  background: #2B7860;
}

/* Course Cards */
.gh-course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
}
.gh-course-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #e8e8e8;
}
.gh-course-card__body {
  padding: 16px 20px;
}
.gh-course-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.gh-course-card__info {
  font-size: 13px;
  color: #666;
  margin: 0;
}
.gh-course-card__stats {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.gh-course-card__stat {
  font-size: 13px;
  color: #444;
}
.gh-course-card__stat strong {
  font-weight: 700;
}

/* Amenities Grid */
.gh-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.gh-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e8ebe9;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
}
.gh-amenity__icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* Packages Grid */
.gh-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.gh-package {
  background: #fff;
  border: 1px solid #f0e6c8;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.15s;
}
.gh-package:hover {
  box-shadow: 0 4px 16px rgba(197,165,90,0.15);
}
.gh-package__name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.gh-package__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gh-package__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gh-package__price {
  font-size: 18px;
  font-weight: 800;
  color: #b8912e;
}
.gh-package__duration {
  font-size: 13px;
  color: #888;
}

/* Sidebar Cards */
.gh-sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}
.gh-sidebar-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

/* Sidebar Offers */
.gh-sidebar-offers {
  border-color: #f0e6c8;
}
.gh-sidebar-offers .gh-sidebar-card__title {
  color: #b8912e;
}
.gh-sidebar-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f8f6f0;
  font-size: 14px;
  color: #444;
}
.gh-sidebar-offer-item:last-child {
  border-bottom: none;
}

/* Sidebar Contact */
.gh-sidebar-contact {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.gh-sidebar-contact a {
  color: #04AE79;
  text-decoration: none;
  font-weight: 600;
}
.gh-sidebar-contact a:hover {
  text-decoration: underline;
}

/* Book Button */
.gh-sidebar-book-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #04AE79;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  box-sizing: border-box;
}
.gh-sidebar-book-btn:hover {
  background: #039b6b;
}

/* Gallery Grid (legacy — now using .gh-gallery-grid in profile hero section) */

/* Light Profile Variant (free / non-premium) */
.gh-light {
  background: #fff;
}
.gh-light .gh-profile-layout {
  grid-template-columns: 1fr;
  max-width: 900px;
}
.gh-light .gh-profile-sidebar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Upgrade CTA (light profile) */
.gh-light-upgrade {
  background: linear-gradient(135deg, #166534, #04AE79);
  border-radius: 12px;
  padding: 28px 24px;
  color: #fff;
  text-align: center;
  max-width: 900px;
  margin: 24px auto;
  padding-left: 16px;
  padding-right: 16px;
}
.gh-light-upgrade__icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.gh-light-upgrade__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.gh-light-upgrade__text {
  font-size: 14px;
  opacity: 0.9;
  margin: 0 0 16px;
  line-height: 1.5;
}
.gh-light-upgrade__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #166534;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}
.gh-light-upgrade__btn:hover {
  transform: translateY(-2px);
}

/* Review card sub-elements */
.gh-review-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gh-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2B7860;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.gh-review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.gh-review-card__meta {
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gh-review-card__hcp {
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
}
.gh-review-card__score-badge {
  margin-left: auto;
  background: #04AE79;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-review-card__text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.gh-review-card__pros {
  font-size: 13px;
  color: #065f46;
  background: #ecfdf5;
  padding: 8px 12px;
  border-radius: 6px;
  line-height: 1.4;
}
.gh-review-card__cons {
  font-size: 13px;
  color: #991b1b;
  background: #fef2f2;
  padding: 8px 12px;
  border-radius: 6px;
  line-height: 1.4;
}
.gh-review-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.gh-review-card__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  background: #f1f5f9;
  border-radius: 4px;
  color: #555;
}

/* Meta Scores count */
.gh-meta-score__count {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* Course designer */
.gh-course-card__designer {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.gh-course-card__stat-value {
  font-weight: 700;
}
.gh-course-card__stat-label {
  font-size: 12px;
  color: #888;
  margin-left: 3px;
}

/* About text */
.gh-about-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s;
}
.gh-about-text--expanded {
  max-height: none;
}
.gh-about-toggle {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #04AE79;
  cursor: pointer;
}

/* Package extras */
.gh-package--highlight {
  border-color: #04AE79;
  box-shadow: 0 0 0 1px #04AE79;
}
.gh-package__recommended {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #04AE79;
  margin-bottom: 8px;
}
.gh-package__body { }
.gh-package__includes {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
  color: #555;
}
.gh-package__includes li {
  padding: 3px 0;
}
.gh-package__includes li::before {
  content: '\2713';
  color: #04AE79;
  margin-right: 6px;
  font-weight: 700;
}
.gh-package__nights {
  font-size: 13px;
  color: #888;
}
.gh-package__cta {
  display: inline-block;
  padding: 8px 16px;
  background: #04AE79;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.gh-package__cta:hover {
  background: #039b6b;
}

/* Sidebar Offers header + items */
.gh-sidebar-card--community {
  border-color: #04AE79;
  text-align: center;
}
.gh-sidebar-card--offers {
  border-color: #f0e6c8;
  padding: 0;
}
.gh-sidebar-offers__header {
  background: linear-gradient(135deg, #C5A55A, #b8912e);
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
}
.gh-sidebar-offers__item {
  padding: 12px 20px;
  border-bottom: 1px solid #f8f6f0;
}
.gh-sidebar-offers__item:last-child { border-bottom: none; }

/* Sidebar Contact links */
.gh-sidebar-contact__link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #04AE79;
  text-decoration: none;
  font-weight: 600;
}
.gh-sidebar-contact__link:hover { text-decoration: underline; }

/* Nearby Golf Clubs */
.gh-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gh-nearby-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.gh-nearby-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.gh-nearby-card__img {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}
.gh-nearby-card__body { padding: 12px 14px; }
.gh-nearby-card__name { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
.gh-nearby-card__location { font-size: 12px; color: #888; margin-bottom: 6px; }
.gh-nearby-card__meta { display: flex; gap: 8px; font-size: 12px; color: #666; flex-wrap: wrap; }

/* Related Hotels */
.gh-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.gh-related-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.gh-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.gh-related-card__img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
}
.gh-related-card__body { padding: 12px 14px; }
.gh-related-card__name { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
.gh-related-card__location { font-size: 12px; color: #888; margin-bottom: 4px; }
.gh-related-card__meta { font-size: 12px; color: #666; }

/* Full Gallery */
.gh-full-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gh-full-gallery__item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s;
}
.gh-full-gallery__item:hover {
  transform: scale(1.02);
}
.gh-full-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 11px;
  border-radius: 0 0 8px 8px;
}

/* Light Profile extras */
.gh-light-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1a1a1a;
}
.gh-light-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.55));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gh-light__content { color: #fff; }
.gh-light__name {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 4px;
}
.gh-light__location {
  font-size: 14px;
  opacity: 0.85;
}
.gh-light__lock {
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: #888;
}
.gh-light-upgrade__features {
  text-align: left;
  font-size: 12px;
  color: #555;
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
}
.gh-light-upgrade__features li {
  padding: 3px 0;
}

/* Proximity Badge */
.gh-proximity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.gh-proximity-badge--nearby {
  background: #ecfdf5;
  color: #065f46;
}
.gh-proximity-badge--region {
  background: #eff6ff;
  color: #1e40af;
}
.gh-proximity-badge--country {
  background: #f5f3ff;
  color: #5b21b6;
}


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

@media (max-width: 1024px) {
  .gh-profile-layout {
    grid-template-columns: 1fr;
  }
  .gh-profile-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .gh-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gh-gallery-grid__first { grid-row: auto; height: 200px; }
  .gh-gallery-grid__more a { height: 120px; }
  .gh-related-grid { grid-template-columns: repeat(2, 1fr); }
  .gh-nearby-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .gh-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gh-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gh-hero h1 {
    font-size: 26px;
  }
  .gh-profile-hero {
    height: 60vh;
  }
  .gh-profile-hero__title {
    font-size: 26px;
  }
  .gh-profile-hero__name {
    font-size: 22px;
  }
  .gh-packages-grid {
    grid-template-columns: 1fr;
  }
  .gh-light .gh-profile-sidebar {
    grid-template-columns: 1fr;
  }
  .gh-full-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .gh-grid-4,
  .gh-grid-3 {
    grid-template-columns: 1fr;
  }
  .gh-hero {
    padding: 32px 16px 28px;
  }
  .gh-hero__stats {
    font-size: 12px;
  }
  .gh-section {
    padding: 28px 0;
  }
  .gh-section__title {
    font-size: 18px;
  }
  .gh-card__img {
    height: 160px;
  }
  .gh-profile-hero {
    height: 50vh;
  }
  .gh-profile-hero__title {
    font-size: 22px;
  }
  .gh-profile-hero__name {
    font-size: 20px;
  }
  .gh-profile-hero__overlay {
    padding: 20px 16px;
  }
  .gh-profile-hero__scores { gap: 8px; }
  .gh-profile-hero__score-pill { padding: 8px 12px; min-width: 60px; }
  .gh-profile-hero__score-value { font-size: 16px; }
  .gh-profile-layout {
    margin-top: -24px;
    padding: 0 12px 40px;
    gap: 16px;
  }
  .gh-profile-sidebar {
    grid-template-columns: 1fr;
  }
  .gh-community-header__top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gh-community-header__score { font-size: 32px; }
  .gh-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gh-gallery-grid__first { grid-row: auto; height: 160px; }
  .gh-gallery-grid__more a { height: 100px; }
  .gh-amenities-grid {
    grid-template-columns: 1fr;
  }
  .gh-meta-scores {
    grid-template-columns: 1fr;
  }
  .gh-nearby-grid { grid-template-columns: 1fr; }
  .gh-related-grid { grid-template-columns: repeat(2, 1fr); }
  .gh-full-gallery { grid-template-columns: repeat(2, 1fr); }
  .gh-light-hero {
    height: 180px;
  }
  .gh-psection__title { font-size: 18px; }
}
