/* Glorify Holidays — Design System */
:root {
  --gh-gold: #C9A84C;
  --gh-gold-light: #F0D080;
  --gh-gold-pale: #FDF6E3;
  --gh-dark: #1A1208;
  --gh-brown: #3D2B0A;
  --gh-text: #2C1D00;
  --gh-muted: #66563F;
  --gh-surface: #FFFDF7;
  --gh-card: #FFF9EE;
  --gh-border: #EDE0C4;
  --gh-white: #fff;
  --gh-radius: 28px;
  --gh-radius-sm: 16px;
  --gh-pill: 40px;
  --gh-nav-h: 104px;
  --gh-strip-h: 44px;
  --gh-logo-h: 92px;
  --gh-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --gh-font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --gh-shadow: 0 12px 40px rgba(26, 18, 8, 0.08);
  --gh-transition: 0.22s ease;
  --gh-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --gh-ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --gh-ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --gh-ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --gh-dur-fast: 140ms;
  --gh-dur-medium: 240ms;
  --gh-dur-slow: 400ms;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body.gh-page {
  margin: 0;
  font-family: var(--gh-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gh-text);
  background: var(--gh-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.gh-page h1,
body.gh-page h2,
body.gh-page h3,
body.gh-page h4 {
  font-family: var(--gh-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--gh-brown);
  margin: 0 0 0.5em;
}

body.gh-page a {
  color: inherit;
  text-decoration: none;
}

body.gh-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gh-container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.gh-accent {
  color: var(--gh-gold);
  font-style: italic;
}

.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gh-gold);
  margin-bottom: 1rem;
}

.gh-eyebrow-pill {
  background: var(--gh-gold-pale);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-pill);
  padding: 0.45rem 1rem;
  font-size: 12px;
}

.gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.5rem;
  border-radius: var(--gh-pill);
  font-family: var(--gh-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--gh-dur-medium) var(--gh-ease-out-quint),
    color var(--gh-dur-medium) var(--gh-ease-out-quint),
    border-color var(--gh-dur-medium) var(--gh-ease-out-quint),
    transform var(--gh-dur-fast) var(--gh-ease-out-quint),
    box-shadow var(--gh-dur-medium) var(--gh-ease-out-quint);
}

.gh-btn:active:not(:disabled) {
  transform: scale(0.97);
}

.gh-btn:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 3px;
}

.gh-btn--gold {
  background: var(--gh-gold);
  color: var(--gh-dark);
  border-color: var(--gh-gold);
}

.gh-btn--gold:hover {
  background: var(--gh-gold-light);
  border-color: var(--gh-gold-light);
}

@media (hover: hover) and (pointer: fine) {
  .gh-btn--gold:hover {
    transform: translateY(-1px);
  }
}

.gh-btn--gold:active:not(:disabled) {
  transform: translateY(0) scale(0.97);
}

.gh-btn--outline {
  background: transparent;
  color: var(--gh-brown);
  border-color: var(--gh-border);
}

.gh-btn--outline:hover {
  border-color: var(--gh-gold);
  color: var(--gh-gold);
}

.gh-btn--dark {
  background: var(--gh-gold);
  color: var(--gh-dark);
}

.gh-star {
  color: var(--gh-gold);
  font-size: 0.75rem;
}

/* Header */
.gh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--gh-transition);
}

.gh-header.is-scrolled {
  box-shadow: var(--gh-shadow);
}

.gh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--gh-nav-h);
  gap: 0.75rem;
}

.gh-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--gh-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gh-brown);
  flex-shrink: 0;
  min-width: 0;
}

.gh-logo__mark {
  color: var(--gh-gold);
  font-size: 1.1rem;
}

.gh-logo strong {
  color: var(--gh-gold);
  font-weight: 700;
}

.gh-logo--image {
  line-height: 0;
}

.gh-header .gh-logo--image {
  max-width: min(140px, 42vw);
}

.gh-logo__img {
  display: block;
  width: auto;
  height: var(--gh-logo-h);
  max-height: var(--gh-logo-h);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.gh-header.is-scrolled .gh-logo__img {
  height: calc(var(--gh-logo-h) - 6px);
  max-height: calc(var(--gh-logo-h) - 6px);
}

.gh-logo--footer {
  max-width: none;
  flex-shrink: 0;
}

.gh-logo--footer .gh-logo__img {
  height: 110px;
  max-height: 110px;
  max-width: min(168px, 100%);
}

.gh-drawer .gh-logo--image {
  max-width: 160px;
  max-height: none;
  margin-bottom: 0.5rem;
}

.gh-drawer .gh-logo__img {
  height: auto;
  max-height: 120px;
  max-width: min(160px, 100%);
  width: 100%;
}

.gh-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.gh-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gh-text);
  transition: color var(--gh-transition);
}

.gh-nav a:hover,
.gh-nav a:focus-visible {
  color: var(--gh-gold);
}

.gh-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gh-header__strip {
  background: var(--gh-dark);
  color: var(--gh-gold-pale);
  box-shadow: inset 0 1px 0 rgba(201, 168, 76, 0.28);
}

.gh-header__strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--gh-strip-h);
}

.gh-header__contacts {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  min-width: 0;
}

.gh-header__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--gh-strip-h);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gh-gold-pale);
  white-space: nowrap;
  transition: color var(--gh-dur-fast) var(--gh-ease-out-quint);
}

.gh-header__contact i {
  color: var(--gh-gold);
  font-size: 0.9rem;
  width: 1em;
  text-align: center;
}

.gh-header__contact:hover,
.gh-header__contact:focus-visible {
  color: var(--gh-gold-light);
}

.gh-header__contact:focus-visible,
.gh-header__social a:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 3px;
}

.gh-header__social {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.gh-header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: var(--gh-strip-h);
  color: var(--gh-gold-pale);
  font-size: 1rem;
  transition: color var(--gh-dur-fast) var(--gh-ease-out-quint),
    transform var(--gh-dur-fast) var(--gh-ease-out-quint);
}

.gh-header__social a:hover,
.gh-header__social a:focus-visible {
  color: var(--gh-gold);
}

@media (hover: hover) and (pointer: fine) {
  .gh-header__social a:hover {
    transform: translateY(-1px);
  }
}

.gh-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.gh-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gh-brown);
  transition: transform var(--gh-transition);
}

.gh-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.gh-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.gh-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.5);
  opacity: 0;
  transition: opacity var(--gh-dur-medium) var(--gh-ease-out-quint);
}

.gh-drawer.is-open .gh-drawer__backdrop {
  opacity: 1;
}

.gh-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--gh-surface);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--gh-dur-medium) var(--gh-ease-drawer);
  overflow-y: auto;
}

.gh-drawer:not(.is-open) .gh-drawer__panel {
  transition-duration: 180ms;
}

.gh-drawer.is-open .gh-drawer__panel {
  transform: translateX(0);
}

.gh-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.5rem;
}

.gh-drawer__nav a {
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--gh-border);
}

.gh-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--gh-brown);
}

body.gh-drawer-open {
  overflow: hidden;
}

/* Hero */
.gh-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.gh-hero__copy {
  padding-top: 1rem;
  max-width: 36rem;
}

.gh-hero--home .gh-hero__eyebrow {
  color: var(--gh-brown);
  background: var(--gh-gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.35);
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 600;
}

.gh-hero__title {
  font-family: var(--gh-font-display);
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--gh-brown);
  margin: 0 0 1.25rem;
}

.gh-hero__title-line {
  display: block;
}

.gh-hero__title-accent {
  font-style: italic;
  color: var(--gh-gold);
  font-weight: 700;
}

.gh-hero__sub {
  font-family: var(--gh-font-body);
  font-size: 1rem;
  color: var(--gh-muted);
  max-width: 32rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.gh-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gh-hero__play {
  font-size: 0.75rem;
  line-height: 1;
}

.gh-btn--pill {
  border-radius: var(--gh-pill);
  padding-inline: 1.65rem;
}

.gh-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  padding-top: 1.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--gh-border);
}

.gh-hero__stat strong {
  display: block;
  font-family: var(--gh-font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--gh-brown);
  margin-bottom: 0.2rem;
}

.gh-hero__stat span {
  font-family: var(--gh-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gh-muted);
}

/* Banner hero with background image + search */
.gh-hero--banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(82vh, 760px);
  padding: 2.25rem 0 3rem;
  overflow: clip;
}

.gh-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.06);
  z-index: 0;
}

.gh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.55) 0%, rgba(26, 18, 8, 0.68) 45%, rgba(26, 18, 8, 0.82) 100%);
  z-index: 1;
}

.gh-hero--banner .gh-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.gh-hero--banner .gh-hero__content {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.gh-hero--banner .gh-hero__eyebrow {
  color: var(--gh-gold-light);
  background: rgba(26, 18, 8, 0.45);
  border-color: rgba(201, 168, 76, 0.45);
}

.gh-hero--banner .gh-hero__title {
  color: var(--gh-white);
  margin-bottom: 1rem;
}

.gh-hero--banner .gh-hero__title-accent {
  display: inline;
}

.gh-hero--banner .gh-hero__sub {
  color: rgba(255, 253, 247, 0.9);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.gh-hero--banner .gh-hero__stats {
  justify-content: center;
  border-top-color: rgba(255, 255, 255, 0.18);
  margin-top: 2rem;
}

.gh-hero--banner .gh-hero__stat strong {
  color: var(--gh-white);
}

.gh-hero--banner .gh-hero__stat span {
  color: rgba(255, 253, 247, 0.78);
}

.gh-hero-search {
  background: rgba(255, 253, 247, 0.97);
  border: 1px solid rgba(237, 224, 196, 0.85);
  border-radius: var(--gh-pill);
  padding: 0.45rem;
  box-shadow: 0 20px 56px rgba(26, 18, 8, 0.28);
  text-align: left;
}

.gh-hero-search--single {
  max-width: 40rem;
  margin-inline: auto;
}

.gh-hero-search,
.gh-hero-search * {
  box-sizing: border-box;
}

.gh-hero-search__bar {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  min-width: 0;
}

.gh-hero-search-combo {
  position: relative;
  flex: 1;
  min-width: 0;
}

.gh-hero-search-combo__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gh-gold);
  pointer-events: none;
  z-index: 1;
  font-size: 0.95rem;
}

.gh-hero-search-combo input[type="search"],
.gh-hero-search-combo input[type="text"] {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: none;
  border-radius: var(--gh-pill);
  padding: 0.85rem 1rem 0.85rem 2.65rem;
  font-family: var(--gh-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gh-text);
  background: transparent;
}

.gh-hero-search-combo input[type="search"]:focus,
.gh-hero-search-combo input[type="text"]:focus {
  outline: none;
}

.gh-hero-search-combo input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.gh-hero-search__btn {
  flex-shrink: 0;
  min-height: 52px;
  padding-inline: 1.35rem;
  gap: 0.4rem;
  white-space: nowrap;
}

.gh-hero-search__btn-icon {
  display: none;
}

.gh-hero-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: 12px;
  box-shadow: var(--gh-shadow);
  max-height: 280px;
  overflow-y: auto;
  z-index: 20;
}

.gh-hero-search-suggestions[hidden] {
  display: none !important;
}

.gh-hero-search-suggestions__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--gh-font-body);
  font-size: 0.875rem;
  color: var(--gh-text);
}

.gh-hero-search-suggestions__item:hover,
.gh-hero-search-suggestions__item.is-active {
  background: var(--gh-gold-pale);
}

.gh-hero-search-suggestions__thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gh-gold-pale);
}

.gh-hero-search-suggestions__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gh-gold);
}

.gh-hero-search-suggestions__name {
  display: block;
  font-weight: 600;
  color: var(--gh-brown);
}

.gh-hero-search-suggestions__type {
  display: block;
  font-size: 0.75rem;
  color: var(--gh-muted);
}

.gh-hero-search-suggestions__empty {
  padding: 0.75rem 0.85rem;
  font-size: 0.875rem;
  color: var(--gh-muted);
}

.gh-hero-search-quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0 0.25rem;
}

.gh-hero-search-quick__chip {
  border: 1px solid rgba(255, 253, 247, 0.28);
  background: rgba(26, 18, 8, 0.38);
  color: rgba(255, 253, 247, 0.92);
  font-family: var(--gh-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: var(--gh-pill);
  cursor: pointer;
  transition: background var(--gh-transition), border-color var(--gh-transition), color var(--gh-transition);
}

.gh-hero-search-quick__chip:hover {
  background: rgba(201, 168, 76, 0.28);
  border-color: rgba(201, 168, 76, 0.65);
  color: var(--gh-white);
}

.gh-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.875rem;
  min-height: 360px;
}

.gh-mosaic--hero {
  width: 100%;
}

.gh-mosaic__cell {
  position: relative;
  display: block;
  border-radius: var(--gh-radius-sm);
  overflow: hidden;
  min-height: 140px;
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .gh-mosaic__cell:hover .gh-mosaic__media img {
    transform: scale(1.04);
  }
}

.gh-mosaic__cell:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 3px;
}

.gh-mosaic__cell--tall {
  grid-row: span 2;
  min-height: 100%;
}

.gh-mosaic__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gh-mosaic__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--gh-ease-out);
  z-index: 0;
}

.gh-mosaic__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.05) 35%, rgba(26, 18, 8, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--gh-transition);
}

.gh-mosaic__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.45rem 0.9rem;
  background: rgba(26, 18, 8, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gh-pill);
  font-family: var(--gh-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gh-white);
  letter-spacing: 0.02em;
}

/* Sections */
.gh-section {
  padding: 4rem 0;
}

.gh-section--pale {
  background: var(--gh-gold-pale);
}

.gh-section.gh-home-intro {
  text-align: center;
  padding: 2rem 0;
}

.gh-home-intro__head {
  margin-bottom: 0.75rem;
}

.gh-home-intro__head h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.gh-home-intro__lead {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gh-muted);
}

.gh-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gh-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.gh-section-head p {
  color: color-mix(in srgb, var(--gh-text) 78%, transparent);
  max-width: 28rem;
  margin: 0.5rem 0 0;
}

/* Filter pills */
.gh-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gh-filter-pill {
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  border-radius: var(--gh-pill);
  border: 1px solid var(--gh-border);
  background: var(--gh-white);
  font-family: var(--gh-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gh-muted);
  cursor: pointer;
  transition: background var(--gh-dur-medium) var(--gh-ease-out-quint),
    border-color var(--gh-dur-medium) var(--gh-ease-out-quint),
    color var(--gh-dur-medium) var(--gh-ease-out-quint),
    transform var(--gh-dur-fast) var(--gh-ease-out-quint);
}

.gh-filter-pill:active {
  transform: scale(0.97);
}

.gh-filter-pill.is-active {
  background: var(--gh-gold);
  border-color: var(--gh-gold);
  color: var(--gh-dark);
}

@media (hover: hover) and (pointer: fine) {
  .gh-filter-pill:hover {
    background: var(--gh-gold);
    border-color: var(--gh-gold);
    color: var(--gh-dark);
  }
}

.gh-filter-pill:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 2px;
}

/* Destination grid */
.gh-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.gh-dest-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
  overflow: hidden;
  transition: transform var(--gh-dur-medium) var(--gh-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .gh-dest-card:hover {
    transform: translateY(-3px);
  }

  .gh-dest-card:hover .gh-dest-card__media img {
    transform: scale(1.04);
  }
}

.gh-dest-card__img:focus-visible,
.gh-dest-card__body h3 a:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.gh-dest-card.is-hidden {
  display: none;
}

.gh-owl .owl-item.is-hidden {
  display: none !important;
}

.gh-dest-empty {
  text-align: center;
  color: var(--gh-muted);
  padding: 2rem;
  max-width: 36rem;
  margin: 0 auto;
}

.gh-dest-filter-empty {
  text-align: center;
  color: var(--gh-muted);
  padding: 2rem 1rem;
  margin: 0 0 1rem;
  background: var(--gh-gold-pale);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
}

.gh-dest-slider {
  position: relative;
}

.gh-dest-card__img {
  position: relative;
  display: block;
  flex-shrink: 0;
  height: 200px;
  overflow: hidden;
  text-decoration: none;
}

.gh-dest-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 280ms var(--gh-ease-out);
}

body.gh-page .gh-dest-card__media img,
body.gh-page .gh-location-card__img img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 280ms var(--gh-ease-out);
}

body.gh-page .gh-media--placeholder,
body.gh-page img.gh-media--placeholder {
  object-fit: contain;
  padding: 1.25rem;
  background: var(--gh-gold-pale);
}

.gh-location-card__img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: var(--gh-gold-pale);
}

body.gh-page .gh-location-card__img img.gh-media--placeholder {
  object-fit: cover;
  padding: 0;
}

.gh-dest-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.65rem;
  background: var(--gh-gold);
  color: var(--gh-dark);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--gh-pill);
}

.gh-dest-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.15rem 1.25rem;
}

.gh-dest-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.gh-dest-card__body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.gh-dest-card__meta {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--gh-text) 68%, transparent);
  margin-bottom: 0.5rem;
}

.gh-dest-card__price {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gh-gold);
}

/* Featured package */
.gh-featured {
  margin: 0 1rem 4rem;
  padding: 2.5rem;
  background: var(--gh-brown);
  border-radius: var(--gh-radius);
  color: var(--gh-gold-pale);
  position: relative;
  overflow: hidden;
}

.gh-featured__rings {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.gh-featured__rings--tr {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -40px;
}

.gh-featured__rings--br {
  width: 140px;
  height: 140px;
  bottom: -20px;
  right: 80px;
}

.gh-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.gh-featured h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gh-gold-pale);
}

.gh-featured p {
  color: rgba(253, 246, 227, 0.85);
  line-height: 1.65;
}

.gh-featured__includes {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.gh-featured__includes li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.gh-featured__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gh-gold);
}

.gh-featured__price-label {
  font-size: 0.8rem;
  color: var(--gh-muted);
  opacity: 0.9;
}

.gh-featured__price {
  font-family: var(--gh-font-display);
  font-size: 2.5rem;
  color: var(--gh-gold);
  font-weight: 700;
}

.gh-featured-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 280px;
}

.gh-featured-collage__cell {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 120px;
}

.gh-featured-collage__cell--tall {
  grid-row: span 2;
}

.gh-featured-collage__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.gh-featured-collage__label {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  padding: 0.3rem 0.6rem;
  background: rgba(26, 18, 8, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  font-size: 0.7rem;
  color: var(--gh-gold-pale);
}

/* Testimonials */
.gh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gh-testimonial-card {
  background: var(--gh-white);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
  padding: 1.75rem;
}

.gh-testimonial-card__quote {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gh-muted);
  line-height: 1.65;
  margin: 1rem 0;
}

.gh-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gh-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gh-gold-pale);
  color: var(--gh-gold);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gh-testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.gh-testimonial-card__pkg {
  font-size: 0.75rem;
  color: var(--gh-muted);
}

/* Trust */
.gh-trust-checklist {
  list-style: none;
  margin: 0 auto 2.25rem;
  padding: 1.25rem 1.5rem;
  max-width: 34rem;
  display: grid;
  gap: 0.85rem;
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
}

.gh-trust-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gh-text);
}

.gh-trust-checklist .fa-check {
  flex-shrink: 0;
  width: 1.25rem;
  margin-top: 0.15rem;
  text-align: center;
  color: var(--gh-gold);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .gh-trust-checklist {
    grid-template-columns: 1fr 1fr;
    max-width: 42rem;
    gap: 1rem 1.5rem;
  }
}

.gh-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gh-trust-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
  padding: 1.5rem;
}

.gh-trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gh-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gh-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.gh-trust-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.gh-trust-card p {
  font-size: 0.875rem;
  color: var(--gh-muted);
  line-height: 1.65;
  margin: 0;
}

/* Newsletter */
.gh-newsletter {
  margin: 0 1rem 4rem;
  padding: 3rem 2rem;
  background: var(--gh-dark);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gh-newsletter::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gh-newsletter h2 {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  color: var(--gh-gold-pale);
  position: relative;
}

.gh-newsletter p {
  color: var(--gh-muted);
  margin-bottom: 1.5rem;
  position: relative;
}

.gh-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
  gap: 0.5rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--gh-pill);
  border: 1px solid rgba(201, 168, 76, 0.25);
  position: relative;
}

.gh-newsletter__form input {
  flex: 1;
  min-width: 180px;
  min-height: 44px;
  padding: 0 1.25rem;
  border: none;
  background: transparent;
  color: var(--gh-gold-pale);
  font-family: var(--gh-font-body);
  font-size: 0.9rem;
}

.gh-newsletter__form input::placeholder {
  color: rgba(253, 246, 227, 0.5);
}

.gh-newsletter__form input:focus {
  outline: none;
}

/* Footer */
.gh-footer {
  background: var(--gh-brown);
  color: rgba(253, 246, 227, 0.85);
  padding: 3.5rem 0 0;
}

.gh-footer h4 {
  font-family: var(--gh-font-display);
  color: var(--gh-gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.gh-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.gh-footer__brand p {
  font-size: 0.875rem;
  opacity: 0.65;
  line-height: 1.65;
  margin: 0.75rem 0 1rem;
}

.gh-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gh-footer__links li {
  margin-bottom: 0.5rem;
}

.gh-footer__links a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: color var(--gh-transition);
}

.gh-footer__links a:hover {
  color: var(--gh-gold);
}

.gh-footer__social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gh-footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gh-gold);
  transition: background var(--gh-transition);
}

.gh-footer__social a:hover {
  background: rgba(201, 168, 76, 0.15);
}

.gh-footer__social .gh-social-threads {
  font-family: var(--gh-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.gh-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  font-size: 0.8rem;
  opacity: 0.7;
}

.gh-footer__phone {
  color: var(--gh-gold);
  font-weight: 600;
}

/* WhatsApp float */
.gh-whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gh-gold);
  color: var(--gh-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(26, 18, 8, 0.2);
  transition: transform var(--gh-dur-fast) var(--gh-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .gh-whatsapp-float:hover {
    transform: scale(1.04);
  }
}

/* Enquiry modal */
.gh-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
}

.gh-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.gh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.55);
  opacity: 0;
  transition: opacity var(--gh-dur-medium) var(--gh-ease-out);
}

.gh-modal:not(.is-open) .gh-modal__backdrop {
  transition-duration: 180ms;
}

.gh-modal.is-open .gh-modal__backdrop {
  opacity: 1;
}

.gh-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--gh-surface);
  border-radius: var(--gh-radius-sm);
  padding: 2rem;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform var(--gh-dur-medium) var(--gh-ease-out),
    opacity var(--gh-dur-medium) var(--gh-ease-out);
}

.gh-modal:not(.is-open) .gh-modal__panel {
  transition-duration: 180ms;
}

.gh-modal.is-open .gh-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gh-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.gh-form-group {
  margin-bottom: 1rem;
}

.gh-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.gh-form-group input,
.gh-form-group select,
.gh-form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--gh-border);
  border-radius: 12px;
  font-family: var(--gh-font-body);
  font-size: 1rem;
  background: var(--gh-white);
  color: var(--gh-text);
}

.gh-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Inner pages (legacy markup compatibility) */
.gh-inner .content {
  padding-top: 0;
}

.gh-inner .banner {
  background: linear-gradient(135deg, var(--gh-brown) 0%, var(--gh-dark) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: var(--gh-gold-pale);
}

.gh-inner .banner h1 {
  font-family: var(--gh-font-display);
  color: var(--gh-gold-pale);
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.gh-inner .banner p {
  color: rgba(253, 246, 227, 0.8);
}

.gh-inner .breadcrumb {
  background: var(--gh-gold-pale);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gh-border);
}

.gh-inner .breadcrumb a {
  color: var(--gh-gold);
}

.gh-inner section {
  padding: 2.5rem 0;
}

.gh-inner .container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.gh-inner .form-control,
.gh-inner input[type="text"],
.gh-inner input[type="email"],
.gh-inner input[type="tel"],
.gh-inner textarea,
.gh-inner select {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 44px;
  border: 1px solid var(--gh-border);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-family: var(--gh-font-body);
}

.gh-inner .submit,
.gh-inner input[type="submit"] {
  background: var(--gh-gold);
  color: var(--gh-dark);
  border: none;
  border-radius: var(--gh-pill);
  padding: 0.75rem 2rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}

.gh-inner h2 {
  font-family: var(--gh-font-display);
  color: var(--gh-brown);
}

.gh-inner .tours_list .thumbnail,
.gh-inner .tour .thumbnail {
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
  overflow: hidden;
  transition: box-shadow var(--gh-transition), transform var(--gh-transition);
}

.gh-inner .tours_list .thumbnail:hover,
.gh-inner .tour .thumbnail:hover {
  box-shadow: var(--gh-shadow);
  transform: translateY(-2px);
}

.gh-inner .tours_list .thumbnail img,
.gh-inner .tour .thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gh-inner .l-place {
  color: var(--gh-brown);
  font-family: var(--gh-font-display);
  font-weight: 600;
}

.gh-inner .email_subscribe_sec {
  background: var(--gh-gold-pale);
  padding: 3rem 0;
  margin-top: 2rem;
}

.gh-inner .email_subscribe_sec h2 {
  font-family: var(--gh-font-display);
  color: var(--gh-brown);
}

/* Owl carousel overrides */
.gh-owl .owl-stage-outer {
  padding: 0.25rem 0 1rem;
  overflow: visible;
}

.gh-owl--destinations .owl-stage-outer {
  overflow: hidden;
}

@media (max-width: 639px) {
  .gh-owl--destinations .owl-stage-outer {
    overflow: visible;
  }
}

.gh-owl .owl-item {
  display: flex;
}

.gh-owl .gh-dest-card {
  width: 100%;
  margin: 0;
}

.gh-owl--trending .gh-dest-card__img,
.gh-owl--destinations .gh-dest-card__img {
  height: 240px;
}

.gh-owl--destinations .gh-dest-card {
  border-radius: var(--gh-radius-sm);
}

.gh-owl--destinations .gh-dest-card__img,
.gh-owl--destinations .gh-dest-card__media {
  border-radius: var(--gh-radius-sm) var(--gh-radius-sm) 0 0;
}

.gh-owl .owl-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.gh-owl .owl-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: 50%;
  color: var(--gh-brown);
  font-size: 1.35rem;
  line-height: 1;
  transition: background 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gh-owl .owl-nav button:hover {
  background: var(--gh-gold);
  border-color: var(--gh-gold);
  color: var(--gh-dark);
}

.gh-owl .owl-nav button:active {
  transform: scale(0.96);
}

.gh-owl .owl-nav button:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 2px;
}

.gh-owl .owl-nav button.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.gh-owl .owl-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.gh-owl .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--gh-border);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gh-owl .owl-dots .owl-dot.active span,
.gh-owl .owl-dots .owl-dot:hover span {
  background: var(--gh-gold);
  transform: scale(1.15);
}

.gh-owl .owl-dots .owl-dot:focus-visible {
  outline: 2px solid var(--gh-gold);
  outline-offset: 2px;
  border-radius: 50%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (min-width: 768px) {
  .gh-header .gh-logo--image {
    max-width: 140px;
  }

  .gh-nav {
    display: flex;
  }

  .gh-nav__burger {
    display: none;
  }

  .gh-header__actions .gh-btn--gold.gh-nav__cta-desktop {
    display: inline-flex;
  }

  .gh-featured__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 640px) {
  .gh-hero-search--single {
    max-width: 44rem;
  }
}

@media (min-width: 1024px) {
  .gh-hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 92vh;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding: 2rem 0 5rem;
  }

  .gh-hero--banner {
    display: flex;
    grid-template-columns: unset;
    min-height: min(84vh, 780px);
    padding: 2.5rem 0 3.5rem;
  }

  .gh-hero--banner .gh-hero__title {
    font-size: clamp(3rem, 4.8vw, 4.5rem);
  }

  .gh-hero--home .gh-hero__title {
    font-size: clamp(3.25rem, 4.5vw, 4.25rem);
  }

  .gh-mosaic {
    min-height: min(520px, 72vh);
    height: 100%;
  }

  .gh-mosaic-wrap {
    display: flex;
    align-items: center;
    min-height: 480px;
  }

  .gh-dest-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 479px) {
  .gh-hero-search__bar {
    flex-direction: column;
    gap: 0.35rem;
  }

  .gh-hero-search__btn {
    width: 100%;
    justify-content: center;
  }

  .gh-hero-search__btn-text {
    display: none;
  }

  .gh-hero-search__btn-icon {
    display: inline;
  }
}

@media (max-width: 767px) {
  :root {
    --gh-logo-h: 76px;
    --gh-nav-h: 90px;
  }

  .gh-header .gh-logo--image {
    max-width: 116px;
  }

  .gh-header__actions .gh-btn--gold.gh-nav__cta-desktop {
    display: none;
  }

  .gh-header__contact-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .gh-header__social a:nth-child(n + 4) {
    display: none;
  }

  .gh-featured {
    margin-inline: 0.5rem;
    padding: 1.75rem;
  }

  .gh-newsletter {
    margin-inline: 0.5rem;
    padding: 2rem 1.25rem;
  }
}

.gh-alert {
  padding: 0.85rem 1.1rem;
  border-radius: var(--gh-radius-sm);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  animation: gh-alert-in var(--gh-dur-medium) var(--gh-ease-out-quint) backwards;
}

@keyframes gh-alert-in {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.gh-alert--success {
  background: rgba(34, 139, 34, 0.12);
  border: 1px solid rgba(34, 139, 34, 0.35);
  color: #1a5c1a;
}

.gh-alert--error {
  background: rgba(180, 40, 40, 0.1);
  border: 1px solid rgba(180, 40, 40, 0.35);
  color: #8b2020;
}
